  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
 /* Confirmation Box Styles */
.confirmation-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    width: 90%;
    max-width: 455px;
    font-family: 'Poppins';
}

.confirmation-box .icon {
    height: 100px;
    width: 100px;
    color: #f23b26;
    border: 3px solid #f23b26;
    border-radius: 50%;
    line-height: 100px;
    font-size: 55px;
    margin: 0 auto 0px;
    animation: smoothBounce 1s;
}

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

.confirmation-box h2 {
    font-size: 1.9rem;
    color: #333;
    margin-bottom:6px;
}

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

.confirmation-box .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.confirmation-box button {
    padding: 12px 25px;
    border: none;
    font-size: 1.3rem;
    border-radius:5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    flex: 1;
    max-width: 110px;
}

.confirmation-box .yes-btn {
    background: seagreen;
    color: white;
}

.confirmation-box .yes-btn:hover {
    background: darkgreen;
    transform: scale(1.05);
}

.confirmation-box .no-btn {
    background: #ff4d4d;
    color: white;
}

.confirmation-box .no-btn:hover {
    background: #e60000;
    transform: scale(1.05);
}

.confirmation-box .ok-btn {
    background: seagreen; 
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1.3rem;
    border-radius:5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    flex: 1;
    max-width: 110px;
}

.confirmation-box .ok-btn:hover {
    background: darkgreen; 
    transform: scale(1.05);
}

.confirmation-box .icon-check {
    height: 100px;
    width: 100px;
    color: seagreen;
    border: 3px solid seagreen;
    border-radius: 50%;
    line-height: 100px;
    font-size: 60px;
    margin-top:5px;
    margin: 0 auto 20px;
    animation: smoothBounce 1s;
}
    

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* 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: 400px;
}

.success-alert-box .icon {
    height: 100px;
    width: 100px;
    color: seagreen; /* Green color for success */
    border: 3px solid seagreen;
    border-radius: 50%;
    line-height: 97px;
    font-size: 50px;
    margin: 0 auto 20px;
}

.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;
    }
}

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

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

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

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

    .confirmation-box button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .confirmation-box .ok-btn{
       padding: 10px 20px;
        font-size: 1rem;
    }
}