body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    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;
}

#logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

h2 {
    margin-bottom: 0.5rem;
}

h6 {
    margin-top: 0;
    color: #f1f1f1;
}

#buttonContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.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 for disabled button */
    color: #ffffff; /* Text color for disabled button */
    cursor: not-allowed; /* Change cursor for disabled button */
}

.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;
}

.logout-button:hover {
    background-color: #ff6b6b;
}