 /* Success Alert Box Styles */
.success-alert-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    width: 90%;
    max-width: 455px;
}

.success-alert-box .icon {
    height: 100px;
    width: 100px;
    color: seagreen; 
    border: 3px solid seagreen;
    border-radius: 50%;
    font-weight: 600px;
    line-height: 97px;
    font-size: 50px;
    margin: 0 auto 20px;
    animation: smoothBounce 1s;
}

@keyframes smoothBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px); 
    }
    60% {
        transform: translateY(-5px); 
    }
}

.success-alert-box h2 {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 10px;
}

.success-alert-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
    margin-top: 0;
}

@media (max-width: 480px) {
    .success-alert-box {
        padding: 20px;
    }

    .success-alert-box .icon {
        height: 80px;
        width: 80px;
        line-height: 77px;
        font-size: 40px;
    }

    .success-alert-box h2 {
        font-size: 1.5rem;
    }

    .success-alert-box p {
        font-size: 1rem;
    }
}