#loading {
    display: block;
    position: fixed;
    top: 29%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db; /* Màu xanh cho hiệu ứng */
    animation: spin 1s linear infinite; /* Hiệu ứng xoay */
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Hiệu ứng xoay */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}