/* Success Modal Styles */
.success-modal-container {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px 32px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    margin-bottom: 8px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #25211F;
    margin: 0;
    line-height: 1.3;
}

.success-message {
    font-size: 16px;
    color: #5D5D5D;
    margin: 0;
    line-height: 1.6;
    max-width: 380px;
}

.success-btn {
    background: #518910;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.success-btn:hover {
    background: #3f6c0d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 137, 16, 0.3);
}

.success-btn:active {
    transform: translateY(0);
}

.success-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.success-modal-close:hover {
    background: #f5f5f5;
}

.success-modal-close svg {
    width: 24px;
    height: 24px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .success-modal-container {
        padding: 40px 24px;
        max-width: 95%;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 15px;
    }

    .success-btn {
        padding: 12px 36px;
        font-size: 15px;
    }
}