.loading-overlay {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important;
}
    .loading-overlay.hidden {
        display: none !important;
    }

.spinner {
    border: 8px solid #99CCFF; /* Viền xám nhạt */
    border-top: 8px solid #3498db; /* Viền trên màu xanh để tạo hiệu ứng xoay */
    border-radius: 50%; /* Hình tròn */
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite; /* Hiệu ứng xoay */
}

.loading-text {
    color: #3366ff;
    font-size: 13px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    background-color: white;
    margin:10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
