.zoom-slider-main {
    position: absolute;
    bottom: 5px;
    z-index: 1000;
    background: rgb(255 255 255 / 0%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.slider-container {
    width: 100%;
    margin-right: 10px;
}
.zoom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
#mainZoomPercent {
    font-weight: bold;
    color: #da251d;
    font-size: 14px;
}
.zoom-slider-main button {
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
}
.custom-zoom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e9ecef;
    outline: none;
    background-image: linear-gradient(to right, #4facfe 0%, #da251d 100%);
    background-repeat: no-repeat;
}
.custom-zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #da251d;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
@media (max-width: 767.98px) {
    .zoom-slider-main {bottom: 0 !important;}
    .btn-toggle-sidebar{bottom: -6px !important;}
    div#zoom-control-wrapper {
        position: fixed !important;
        bottom: 5px !important;  /* Nằm sát đáy màn hình */
        width: 90% !important;   /* Độ rộng chiếm 90% chiều ngang */
        
        /* CĂN GIỮA TUYỆT ĐỐI THEO CHIỀU NGANG */
        left: 50% !important;
        transform: translateX(-50%) !important;
        
        /* Đảm bảo thanh zoom luôn nổi trên các thành phần khác */
        z-index: 10000; 
        
        /* Tùy chỉnh thêm để thanh trượt trông gọn gàng hơn trên mobile */
        padding: 5px 10px !important;
        background: rgba(0, 0, 0, 0.5) !important; /* Làm mờ nền đen cho dễ nhìn */
        border-radius: 20px !important;
    }
}