body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column; /* Center the content vertically */
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.button-container {
    display: flex; /* Use flexbox to arrange buttons in a row */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line */
    justify-content: center; /* Center buttons in the container */
    gap: 15px; /* Space between buttons */
}

.button {
    background-color: #1e1e1e;
    border: 2px solid #444;
    border-radius: 5px;
    color: #ffffff;
    padding: 15px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
    background-color: #333;
    transform: scale(1.05);
}
.logout-button {
    background-color: #ff4444; /* Red color */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 20px; /* Space from the links */
}

.logout-button:hover {
    background-color: #ff0000; /* Darker red on hover */
}
