/* WhatsApp Mandatory Button - Pulse Animation */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.btn-wa-pulse {
    animation: pulse 2s infinite !important;
    font-size: 18px !important;
    padding: 15px 30px !important;
    font-weight: bold !important;
}

.btn-wa-pulse i {
    margin-right: 10px;
    font-size: 24px;
}

/* Warning Box Styling */
.warning-box {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

/* Info Box Styling */
.info-box {
    background: #d1ecf1;
    padding: 10px;
    border-radius: 5px;
    border-left: 4px solid #0c5460;
}

.info-box p {
    margin: 0;
    color: #0c5460;
}

/* SweetAlert Custom Styling */
.swal2-popup {
    font-family: "Arial", sans-serif;
    min-width: 500px;
}

.swal2-html-container {
    text-align: left !important;
}

.swal2-html-container hr {
    margin: 15px 0;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .swal2-popup {
        min-width: 90%;
    }

    .btn-wa-pulse {
        font-size: 16px !important;
        padding: 12px 24px !important;
    }

    .btn-wa-pulse i {
        font-size: 20px;
    }
}
