body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header img {
    height: 200px; /* Adjust the size of the logo as needed */
}
.login-container {
    max-width: 350px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-container form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
}
.login-container label {
    grid-column: 1 / 2;
    text-align: right;
    padding-right: 10px; /* Spacing between label and input */
}
.login-container input[type=text],
.login-container input[type=password],
.login-container input[type=submit] {
    grid-column: 2 / 3;
    padding: 10px;
    margin-bottom: 10px; /* Spacing between form elements */
    border: 1px solid #ddd;
    border-radius: 5px;
}
.login-container input[type=submit] {
    width: 50%;
    justify-self: center; /* Center the button */
    grid-column: 1 / 3; /* Button spans both columns */
    background-color: #333;
    color: #fff;
    cursor: pointer;
    margin-top: 20px; /* Extra space above the button */
}
.login-container input[type=submit]:hover {
    background-color: #555;
}
/* Additional styling for the manager's table */
.manager-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.manager-table, .manager-table th, .manager-table td {
    border: 1px solid #ddd;
}

.manager-table th, .manager-table td {
    padding: 10px;
    text-align: left;
}

/* This ensures that the form inputs and the labels are aligned correctly */
.manager-form {
    display: grid;
    grid-template-columns: max-content auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px; /* Spacing between form elements */
}

/* Style for form labels to align with the inputs */
.manager-form label {
    text-align: right;
    padding-right: 10px; /* Spacing between label and input */
}

/* Additional styling for form inputs */
.manager-form input[type=text],
.manager-form input[type=password],
.manager-form input[type=number],
.manager-form input[type=submit] {
    padding: 10px;
    margin-bottom: 10px; /* Spacing between form elements */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Styling for form submit buttons */
.manager-form input[type=submit] {
    background-color: #333;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
}

.manager-form input[type=submit]:hover {
    background-color: #555;
}

/* Keep the header logo smaller */
.header img {
    height: 100px; /* Adjust the size of the logo as needed */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

th {
    background-color: #333;
    color: white;
}

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

tr:hover {
    background-color: #ddd;
}

th, td {
    padding: 15px;
    text-align: left;
}

.message {
    color: #28a745; /* Or any color you prefer */
    background-color: #dff0d8; /* Or any background color you prefer */
    border-color: #d4edda; /* Or any border color you prefer */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
}

/* Add additional styling as needed */
