.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Nền trắng trong suốt */
    backdrop-filter: blur(5px);
    /* Làm mờ hậu cảnh - cực kỳ hiện đại */
    z-index: 9999;
    /* Đảm bảo luôn nằm trên cùng */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.loader-content {
    text-align: center;
    background: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Đổ bóng nhẹ cho khối loader */
}

/* Custom lại màu xanh trùng với tone của bạn */
.loader-content .text-primary {
    color: #0d6efd !important;
    /* Thay bằng mã màu xanh chính xác của bạn */
}