.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    border-radius: 24px;
    /* Gradient matching the provided image */
    background: linear-gradient(135deg, #7b923a 0%, #208395 50%, #156d91 100%);
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    outline: none;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    height: 25px;
    display: flex;
    align-items: center;
}

.modal-header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;

    @media (max-width: 768px) {
        font-size: 1.8rem;
    }
}

.modal-body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 40px;
    opacity: 0.95;
    outline: none;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 5px 30px !important;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 180px;
    border: 2px solid transparent;
    border-radius: 15px !important;


    @media (max-width: 768px) {
        font-size: 1rem;
    }
}

.btn-create {
    background: white !important;
    color: #d15a24 !important;
    /* Matches the orange text in image */
    border: 2px solid #d15a24 !important;
    width: fit-content !important;
    border-radius: 15px;
}

.btn-login {
    background: white !important;
    color: #333 !important;
    border-radius: 15px;
}

/* ADA Compliance: Focus visible for keyboard users */
.btn:focus,
.close-button:focus {
    outline: 3px solid #ffcc00 !important;
    outline-offset: 4px !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
}