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

.success-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: slideUp 0.3s ease forwards;
}

.success-icon {
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: #264264;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-modal:hover {
    /* background: var(--primary-dark); */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}