body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    min-height: 100vh;       
    margin: 0;
    padding: 2rem 0;         
    box-sizing: border-box;  
    background-color: #312346;
}

#container {
    text-align: center;
    background-color: #4e3d6e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    width: 90%; /* Added to control width on different screens */
    max-width: 600px; /* Prevents it from getting too wide on large screens */
}

#logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

h2 {
    margin-bottom: 0.5rem;
}

h6 {
    margin-top: 0;
    color: #f1f1f1;
}

/* This is the key selector. Ensure it has the period. */
.buttonContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.centered-text {
    text-align: center;
}

.navButton {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #6a4c93;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navButton2 {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #934c93;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navButton:hover {
    background-color: #8a6cb5;
}

.navButton:disabled {
    background-color: #888888;
    color: #ffffff;
    cursor: not-allowed;
}

.logout-button {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.logout-button:hover {
    background-color: #ff6b6b;
}