body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}
.header{
    background: #5cb85c;
    color: white;
    padding: 15px;
}
form {
    background-color: #fff;
    padding: 30px 40px 30px 20px;
    margin: 40px;
    border-radius: 5px;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h2 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
    color: #5cb85c;
}

form input[type="text"],
form input[type="password"],
form input[type="submit"],
input[type="number"],
input[type="email"],
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
form input[type="submit"] {
    background-color: #5cb85c;
    color: #fff;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #4cae4c;
}

.error {
    background-color: #f2dede;
    color: #a94442;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ebccd1;
    border-radius: 3px;
}

.success {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #d6e9c6;
    border-radius: 3px;
}


.topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    /* background-color: #ddd; */
    color: #4cae4c;
  }
  
  .topnav a.active {
    background-color:  #4cae4c;
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 845px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 845px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .menuDownload {
        display: flex;
        justify-content: flex-end;
    }
    .responsive .menuDownload{
        justify-content: center;
    }
    .responsive .menuDownload .navbar-btn {
        margin-bottom: 19px;
        min-width: 80%;
    }
    .responsive a.icon:hover {
        color: #333333;
    }
  }
.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.footer p {
    margin: 0;
    color: #666;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #5cb85c;
    color: white;
}

table tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

table tr:hover {
    background-color: #f1f1f1;
}
.menuDownload {
    display: flex;
    justify-content: flex-end;
}
.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-right: 11px;
}
.container { margin-top: 60px; }
.fixed-menu { position: fixed; top: 0; width: 100%; z-index: 1000; }
.content { margin-top: 60px; }
.topnav a.active { background-color: #4cae4c; color: white; }
.logout {
    margin-top: 15px;
    text-align: end;
}
.logout a {
    color: #d73b3b;
    font-size: larger;
}
.notification {
    display: none;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid;
    border-radius: 5px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    text-align: left;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.row-highlight {
    background-color: #ff3f3f !important;
    color: white;
}
.cell-Red{
    color: #ff3f3f !important;
    font-weight: bold;
}
.cell-Green{
    color: #5cb85c !important;
    font-weight: bold;
}