body {
    margin: 0;
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
    background-color: #282829;
}

.main-wrapper {
    width: 100%;
    flex-direction: column;
    justify-content: center; /* Changed to center vertically */
    align-items: center; /* Changed to center horizontally */
    display: flex;
}

.container {
    flex-direction: column;
    justify-content: center; /* Adjusted for alignment */
    align-items: center;
    display: flex;
    padding: 20px;
    max-width: 600px;
}

.container-logged-in {
    flex-direction: column;
    justify-content: center; /* Adjusted for alignment */
    align-items: center;
    display: flex;
    padding: 20px;
    max-width: 600px;
}

.logo {
    display: block;
    width: auto;
    height: 60px;
    margin-top: 20px;
}

h2, p, label {
    color: #fff; /* Makes text bright against the dark background */
}

h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

p {
    font-size: 14px;
    margin-bottom: 24px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #333;
    color: #fff; /* Ensures bright text in inputs */
}

.button-log-in {
    background-color: #99ca3c;
    color: black;
    padding: 12px;
    margin-top: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

#error-message {
    color: red; /* Red text color */
    font-weight: bold; /* Bold text */
}

#classesTable {
    border-collapse: collapse; /* Ensures no double borders */
    margin: 20px auto; /* Centers the table */
    color: #fff; /* White text color */
    max-width: 600px; /* Maximum width on desktop */
}

#classesTable th, #classesTable td {
    padding: 12px; /* Padding for table cells */
    text-align: left; /* Aligns text to the left */
    border-bottom: 1px solid #555; /* Adds a subtle border between rows */
}

#classesTable th {
    background-color: #282829; /* Slightly darker background for headers */
    font-weight: 600; /* Makes header text bold */
}

#classesTable tr:hover {
    background-color: #3d3d3d; /* Adds a hover effect for table rows */
}

#classesTable td {
    font-size: 14px; /* Matches the font size of the form inputs */
}

.info-section h3, .info-section h4 {
    color: #99ca3c; /* Matches the login button color */
    font-weight: bold;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 14px;
    color: #fff; /* White text color for readability */
    margin-bottom: 20px;
}

.evening-classes {
    border-collapse: collapse; /* Ensures no double borders */
    width: 100%;
    margin: 0 auto; /* Centers the table */
    background-color: #333; /* Dark background for theme consistency */
    color: #fff; /* Ensures text is readable */
    font-size: 14px;
    margin-top: 20px;
}

.evening-classes th, .evening-classes td {
    padding: 8px; /* Comfortable padding */
    text-align: left; /* Aligns text for readability */
    border-bottom: 1px solid #555; /* Subtle separation of rows */
}

.evening-classes th {
    background-color: #282829; /* Header background darker for contrast */
}

.evening-classes tr:hover {
    background-color: #3d3d3d; /* Hover effect for interaction feedback */
}

.info-container {
    background-color: #242424; /* Slightly darker than the main background */
    border-radius: 16px; /* Rounded corners */
    padding: 16px; /* Padding around the content */
    margin-top: 40px; /* Spacing from the login section */
    width: calc(100% - 16px); /* Adjusts width accounting for padding */
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
    border: 1px solid #3d3d3d; /* Slightly brighter border for contrast */

}

.info-container h3, .info-section h4 {
    color: #99ca3c; /* Matches the login button color */
    font-weight: bold;
    margin-bottom: 10px;
}