.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999;
    pointer-events: none!important;
}
.toast {
    background-color: transparent !important; /* Bỏ nền trắng */
    box-shadow: none !important;              /* Bỏ đổ bóng nếu có */
    border: none !important;                  /* Bỏ viền nếu cần */
}

.toast-body {
    background-color: #28a745; /* Ví dụ: màu xanh success */
    color: white !important;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

.toast svg {
    margin-right: 12px;
    flex-shrink: 0;
}

.toast-title strong {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
    color: white !important;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
}

.blockUI {
  z-index: 9999999991!important;
  background-color: rgba(0, 0, 0, 0.5)!important;
}
