/* Common SweetAlert2 styling for both dark and light modes */
.swal2-popup {
    border-radius: 0.75rem;
    padding: 1.5rem;
    font-family: 'Inter', 'Helvetica', sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

/* Adjust title font size */
.swal2-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: inherit;
}

/* Message/body text */
.swal2-html-container {
    font-size: 1rem;
    color: inherit;
}

/* Confirm and cancel buttons */
.swal2-confirm, .swal2-cancel {
    border-radius: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Confirm button*/
.swal2-confirm {
    background-color: #df142f !important;
    color: #fff !important;
}

/* Cancel button (neutral tone) */
.swal2-cancel {
    background-color: #6b7280 !important;
    color: #fff !important;
}

/* Hover effects */
.swal2-confirm:hover {
    background-color: #df142f !important;
}

.swal2-cancel:hover {
    background-color: #4b5563 !important;
}