#spinnerContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
}

.loader {
    width: 64px;
    height: 48px;
    position: relative;
    animation: split 1s ease-in infinite alternate;
}

.loader::before, .loader::after {
    content: '';
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    left: 0;
    top: 0;
    transform: translateX(-10px);
    background: #FF3D00;
    opacity: 0.75;
    backdrop-filter: blur(20px);
}

.loader::after {
    left: auto;
    right: 0;
    background: #FFF;
    transform: translateX(10px);
}

@keyframes split {
    0%, 25% { width: 64px; }
    100% { width: 148px; }
}
#toast-container > .toast {
    color: #ffffff !important;
    font-weight: bold;
}

#toast-container > .toast-success {
    background-color: #28a745 !important;
}

#toast-container .toast-error {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    font-weight: bold;
}

.swal-popup {
    border-radius: 15px;
    background-color: #f9f9f9;
    padding: 30px 40px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.swal-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Icon Style */
.swal-title i {
    font-size: 28px;
    color: #f39c12;
}

.swal-content {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.swal-confirm-btn {
    background: linear-gradient(145deg, #28a745, #218838);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.swal-confirm-btn:hover {
    background: linear-gradient(145deg, #218838, #28a745);
    transform: scale(1.05);
}

.swal-cancel-btn {
    background: linear-gradient(145deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.swal-cancel-btn:hover {
    background: linear-gradient(145deg, #c82333, #dc3545);
    transform: scale(1.05);
}

.swal-confirm-button, .swal-cancel-button {
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.swal-confirm-button {
    background-color: #28a745;
    border: 2px solid #28a745;
}

.swal-confirm-button:hover {
    background-color: #218838;
    border-color: #218838;
}

.swal-cancel-button {
    background-color: #dc3545;
    border: 2px solid #dc3545;
}

.swal-cancel-button:hover {
    background-color: #c82333;
    border-color: #c82333;
}

.swal-popup {
    animation: popupAnimation 0.3s ease-out;
}

@keyframes popupAnimation {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*footer {*/
/*    background: #f8f9fa;*/
/*    padding: 20px 0;*/
/*    height: 80px;*/
/*    box-sizing: border-box;*/
/*}*/

.dataTables_wrapper .dataTables_length select {
    width: 70px !important;
}


