#loginForm, #registrationForm {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button#loginButton, button#registerButton {
    width: 100%;
    padding: 10px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button#loginButton:hover, button#registerButton:hover {
    background-color: #166fe5;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

a#registerLink {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #1877f2;
    font-size: 14px;
}

a#registerLink:hover {
    text-decoration: underline;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    background-color: #000;
    padding: 10px;
    color: white;
    justify-content: space-between;
}

header div {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

header div:hover {
    background-color: #333;
}

header div:nth-child(4) {
    margin-left: auto;
}

.popup {
    display: none;
    position: fixed;
    top: 12.5%;
    left: 12.5%;
    width: 75%;
    height: 75%;
    background-color: white;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid black;
    overflow: auto;
    z-index: 1000; /* Ensure the overlay is above other elements */
}

.popup-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border: 2px solid black;
    width: 80%;
    position: relative;
    z-index: 1001; /* Ensure popup content is above the overlay */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002; /* Ensure close button is above all */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popup-content {
    height: calc(100% - 60px);
}
.popupContent {
    text-align: center; /* Centers text within the div */
}

.popupContent ul {
    display: inline-block; /* This allows the ul to be centered */
    text-align: left; /* Reset text alignment for the list content */
    padding-left: 0; /* Remove default left padding */
    list-style-position: inside; /* Move bullets inside the content flow */
    margin: 0 auto; /* Center the ul within the div */
}

.popupContent li {
    text-align: left; /* Ensure list items are left-aligned within the ul */
}

#editableTable {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

#editableTable th, #editableTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#editableTable th {
    background-color: #f2f2f2;
    font-weight: bold;
}

#editableTable tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Remove the tr:hover rule */
/* #editableTable tr:hover {
    background-color: #e6e6e6;
} */

#editableTable td {
    padding: 0;
}

#editableTable input.editable {
    width: 100%;
    border: none;
    padding: 8px;
    box-sizing: border-box;
}

/* Modify to target only the td containing the focused input */
#editableTable td:focus-within {
    background-color: #e6e6e6;
}

#editableTable input.editable:focus {
    outline: none;
    background-color: #e0e0e0;
}

#editableTable button {
    margin: 2px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #fff;
}

#editableTable button:hover {
    background-color: #f0f0f0;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.quickFilters {
    margin-top: 5px;
    padding: 0;
}

.quickFilters button {
    margin: 2px;
    padding: 8px 12px;
}

.nav-area {
    margin: 0;
    padding: 0;
}

.navInfo {
    margin: 0;
    padding: 5px;
}