﻿/*BEGIN HIỆU ỨNG CHỜ KHI XỬ LÝ*/
/* Overlay toàn màn hình */
.page-loading {
    position: fixed;
    inset: 0;
    display: none; /* ẩn mặc định */
    align-items: center;
    justify-content: center;
    z-index: 2000; /* trên modal/ toast nếu cần thì tăng thêm */
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(2px);
}

.page-loading.active {
    display: flex;
}

/* Card nhỏ kiểu Tabler */
.page-loading-card {
    min-width: 220px;
    max-width: 90vw;
    background: var(--tblr-body-bg, #fff);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    text-align: center;
}

.page-loading .spinner-border {
    width: 2rem;
    height: 2rem;
}
/*END HIỆU ỨNG CHỜ KHI XỬ LÝ*/
