﻿/* swal confirm dialog */
.swal2-confirm {
    background-color: #28a745 !important; /* Green */
    color: white !important;
    border-radius: 5px !important;
}

.swal2-cancel {
    background-color: #dc3545 !important; /* Red */
    color: white !important;
    border-radius: 5px !important;
}

.swal2-toast div:where(.swal2-html-container) {
    margin: .5em .5em !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.swal2-fade-in {
    animation: fadeIn 0.3s ease-in-out !important;
}

.swal2-fade-out {
    animation: fadeOut 0.3s ease-in-out !important;
}
