/* _content/Depot/Components/Handheld/BayPicker.razor.rz.scp.css */
/* ===== OVERLAY ===== */
.baypicker-overlay[b-eo211qw8ib] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3100;
}

/* ===== POPUP ===== */
.baypicker-wrapper[b-eo211qw8ib] {
    animation: baypicker-pop-b-eo211qw8ib .15s ease;
}

@keyframes baypicker-pop-b-eo211qw8ib {
    from {
        transform: scale(.94);
        opacity: .6;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== CONTAINER ===== */
.baypicker-container[b-eo211qw8ib] {
    width: 640px; /* lớn hơn BlockPicker 1 chút */
    max-width: 95vw;
    min-width: 400px;
    max-height: 90vh;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
    padding: 18px;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto;
}

/* ===== HEADER ===== */
.baypicker-header[b-eo211qw8ib] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .baypicker-header .title[b-eo211qw8ib] {
        font-size: 18px;
        font-weight: 700;
    }

    .baypicker-header .subtitle[b-eo211qw8ib] {
        font-size: 14px;
        color: #6c757d;
    }

/* ===== CLOSE ===== */
.baypicker-close[b-eo211qw8ib] {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

    .baypicker-close:hover[b-eo211qw8ib] {
        color: #dc3545;
    }

/* ===== GRID ===== */
.baypicker-keys[b-eo211qw8ib] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
}

.baypicker-row[b-eo211qw8ib] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

/* ===== BAY BUTTON ===== */
.baypicker-key[b-eo211qw8ib] {
    height: 54px;
    border-radius: 12px;
    border: none;
    background: #f1f3f5;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s ease, transform .05s ease;
}

    .baypicker-key:hover[b-eo211qw8ib] {
        background: #e9ecef;
    }

    .baypicker-key:active[b-eo211qw8ib] {
        transform: translateY(1px);
    }

    .baypicker-key.selected[b-eo211qw8ib] {
        background: #6f42c1; /* giống BlockPicker */
        color: white;
        font-weight: 700;
        box-shadow: 0 0 0 2px rgba(111,66,193,.4);
    }

/* ===== ACTION ===== */
.baypicker-actions[b-eo211qw8ib] {
    margin-top: 10px;
}

.baypicker-confirm[b-eo211qw8ib] {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: #198754;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

    .baypicker-confirm:disabled[b-eo211qw8ib] {
        background: #adb5bd;
    }

/* ===== EMPTY ===== */
.baypicker-empty[b-eo211qw8ib] {
    text-align: center;
    color: #6c757d;
    padding: 24px 0;
}

/* ===== MOBILE ===== */
@media (max-width: 400px) {
    .baypicker-container[b-eo211qw8ib] {
        width: 100%;
        padding: 14px;
    }

    .baypicker-row[b-eo211qw8ib] {
        grid-template-columns: repeat(4, 1fr);
    }

    .baypicker-key[b-eo211qw8ib] {
        height: 48px;
        font-size: 16px;
    }
}
/* _content/Depot/Components/Handheld/BlockPicker.razor.rz.scp.css */
/* ===== OVERLAY ===== */
.blockpicker-overlay[b-a5kgw4z3n5] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

/* ===== POPUP ===== */
.blockpicker-wrapper[b-a5kgw4z3n5] {
    animation: blockpicker-pop-b-a5kgw4z3n5 .15s ease;
}

@keyframes blockpicker-pop-b-a5kgw4z3n5 {
    from {
        transform: scale(.94);
        opacity: .6;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== CONTAINER ===== */
.blockpicker-container[b-a5kgw4z3n5] {
    width: 540px;
    min-width: 400px;
    max-width: 95vw;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
    padding: 18px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto;
}

/* ===== HEADER ===== */
.blockpicker-header[b-a5kgw4z3n5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}

.blockpicker-close[b-a5kgw4z3n5] {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

    .blockpicker-close:hover[b-a5kgw4z3n5] {
        color: #dc3545;
    }

/* ===== KEYS ===== */
.blockpicker-keys[b-a5kgw4z3n5] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blockpicker-row[b-a5kgw4z3n5] {
    display: flex;
    gap: 12px;
}

.blockpicker-key[b-a5kgw4z3n5] {
    flex: 1;
    height: 58px;
    border-radius: 12px;
    border: none;
    background: #f1f3f5;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background .12s ease, transform .05s ease;
}

    .blockpicker-key:hover[b-a5kgw4z3n5] {
        background: #e9ecef;
    }

    .blockpicker-key:active[b-a5kgw4z3n5] {
        transform: translateY(1px);
    }

    /* ===== SELECTED ===== */
    .blockpicker-key.selected[b-a5kgw4z3n5] {
        background: #6f42c1;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 0 0 2px rgba(111,66,193,.4);
    }

/* ===== ACTION ===== */
.blockpicker-actions[b-a5kgw4z3n5] {
    margin-top: 8px;
}

.blockpicker-confirm[b-a5kgw4z3n5] {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: #198754;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

    .blockpicker-confirm:hover[b-a5kgw4z3n5] {
        background: #157347;
    }

/* ===== EMPTY ===== */
.blockpicker-empty[b-a5kgw4z3n5] {
    text-align: center;
    color: #6c757d;
    padding: 20px 0;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .blockpicker-container[b-a5kgw4z3n5] {
        width: 100%;
        padding: 14px;
    }

    .blockpicker-key[b-a5kgw4z3n5] {
        height: 50px;
        font-size: 18px;
    }
}
/* _content/Depot/Components/Handheld/Handheld.razor.rz.scp.css */
.bay-table-wrapper[b-q4pw2f704z] {
    width: 100%;
    overflow-x: auto; /* 👉 cuộn ngang */
    overflow-y: hidden;
    padding-bottom: 6px; /* tránh che scrollbar */

}


.bayContainer-table[b-q4pw2f704z] {
/*    width: auto;
    height: auto;*/
    border-collapse: collapse;
    white-space: nowrap;
    /* CỰC KỲ QUAN TRỌNG */
    min-width: max-content;
    width: max-content;
}
/*     .bayContainer-table {
        width : 100%;
        height: 100%;
    } */
.baycontainer-td[b-q4pw2f704z] {
    width: 90px; /* Kích thước chiều rộng của mỗi ô là 100 pixel */
    height: 50px; /* Kích thước chiều cao của mỗi ô là 50 pixel */
    font-size: 0.7rem; /* Kích thước chữ là 0.7rem */
    margin: 1px;
    max-width: 90px;
}

.badge-nhe[b-q4pw2f704z] {
    background-color: #d4edda; /* xanh lá nhạt */
    color: #155724;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.badge-trungbinh[b-q4pw2f704z] {
    background-color: #fff3cd; /* vàng nhạt */
    color: #856404;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.badge-nang[b-q4pw2f704z] {
    background-color: #f8d7da; /* đỏ nhạt */
    color: #721c24;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* Các ô được làm nổi bật: dùng padding + nền màu tạo thành KHUNG bao quanh,
   nội dung (bảng con) co lại nằm gọn bên trong nên không bao giờ bị che chữ. */
.liftoff-target-cell[b-q4pw2f704z],
.lifton-pickup-cell[b-q4pw2f704z],
.restow-source[b-q4pw2f704z] {
    padding: 4px !important;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Ô đích cần hạ container của job LiftOff đang chọn (khung xanh lá nhấp nháy) */
.liftoff-target-cell[b-q4pw2f704z] {
    background-color: #198754;
    animation: liftoffFramePulse-b-q4pw2f704z 1.2s ease-in-out infinite;
}

@keyframes liftoffFramePulse-b-q4pw2f704z {
    0%, 100% {
        background-color: #198754;
    }

    50% {
        background-color: #4cd98a;
    }
}

/* Ô chứa container cần nâng lên xe của job LiftOn đang chọn (khung đỏ nhấp nháy) */
.lifton-pickup-cell[b-q4pw2f704z] {
    background-color: #dc3545;
    animation: liftonFramePulse-b-q4pw2f704z 1.2s ease-in-out infinite;
}

@keyframes liftonFramePulse-b-q4pw2f704z {
    0%, 100% {
        background-color: #dc3545;
    }

    50% {
        background-color: #ff7c88;
    }
}

/* Ô chứa container nguồn đang chọn trong mode đảo chuyển (khung cam nhấp nháy) */
.restow-source[b-q4pw2f704z] {
    background-color: #fd7e14;
    animation: restowFramePulse-b-q4pw2f704z 1.2s ease-in-out infinite;
}

@keyframes restowFramePulse-b-q4pw2f704z {
    0%, 100% {
        background-color: #fd7e14;
    }

    50% {
        background-color: #ffc107;
    }
}

/* Nhấp nháy CẢ BAY (bảng đích grid 2) trong 3 giây khi vừa nhảy tới theo gợi ý (job đảo chuyển không
   xác định đúng 1 ô, hoặc chỉ gợi ý Block) — giúp xe nâng nhận ra ngay khu vực cần tới. Tự tắt sau 3s
   (điều khiển bằng C#, class chỉ được thêm/gỡ trong khoảng thời gian đó). */
.bay-flash[b-q4pw2f704z] {
    animation: bayFlashPulse-b-q4pw2f704z 0.6s ease-in-out 5;
    border-radius: 8px;
}

@keyframes bayFlashPulse-b-q4pw2f704z {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        background-color: transparent;
    }

    50% {
        box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.35);
        background-color: rgba(13, 110, 253, 0.12);
    }
}

/* Ô bị chiếm bởi đuôi container 40ft (2 teu) nằm ở bay liền trước */
.tail-cell[b-q4pw2f704z] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #6c757d;
    background: repeating-linear-gradient(45deg, #e9ecef, #e9ecef 6px, #f8f9fa 6px, #f8f9fa 12px);
    border: 2px dashed #adb5bd;
    border-radius: 4px;
}

/* Ô trống: để trơn, KHÔNG highlight màu xanh — màu xanh chỉ dành cho ô đích thực sự
   (.liftoff-target-cell) khi đang chọn một job hạ container. */
.empty-cell[b-q4pw2f704z] {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}


/* Design 3 */
.my-box[b-q4pw2f704z] {
    background: linear-gradient(135deg, #cfe8ff, #e0f7fa);
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid #b3e5fc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.numericpad-container[b-q4pw2f704z] {
    position: absolute;
    top: 2px;
    right: 0;
    z-index: 1050;
    animation: slideIn 0.25s ease-out;
}

.job-item[b-q4pw2f704z] {
    background: #e0f0f0;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-left: 5px solid #0d6efd;
}
/* Hover nhẹ */
/*.job-item:hover {
    background: #f8f9fa;
}
*/
/* 🔥 Job đang được chọn */
.job-item.selected[b-q4pw2f704z] {
    border-color: #0d6efd;
    background: #a1f7bb;
    box-shadow: 0 6px 18px rgba(13,110,253,.25);
}

/* Chuyến xe chuyển tải đang chờ hạ (khác màu job để không nhầm 2 danh sách) */
.transport-trip-item[b-q4pw2f704z] {
    background: #e7f3ff;
    border-left-color: #0dcaf0;
}

.transport-trip-item.selected[b-q4pw2f704z] {
    border-color: #0dcaf0;
    background: #b6ebf7;
    box-shadow: 0 6px 18px rgba(13,202,240,.3);
}

.job-header[b-q4pw2f704z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.job-container[b-q4pw2f704z] {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

.job-type[b-q4pw2f704z] {
    background: #e7f1ff;
    color: #0d6efd;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.job-body[b-q4pw2f704z] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-line[b-q4pw2f704z] {
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-arrow[b-q4pw2f704z] {
    margin: 0 4px;
    font-weight: 700;
    color: #0d6efd;
}

/* Ghi chú của job/chuyến — làm nổi bật để xe nâng/tài xế đọc được hướng dẫn vị trí đích */
.job-remark[b-q4pw2f704z] {
    background: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 6px;
    font-style: italic;
    margin-top: 2px;
}
.selected-cell[b-q4pw2f704z] {
    background-color: #0d6efd33; /* xanh nhạt */
    border: 2px solid #0d6efd;
}


@media (max-width: 480px) {
    .job-item[b-q4pw2f704z] {
        padding: 10px;
    }

    .job-container[b-q4pw2f704z] {
        font-size: 15px;
    }

    .job-line[b-q4pw2f704z] {
        font-size: 13px;
    }
}
/* _content/Depot/Components/Handheld/NumericPad.razor.rz.scp.css */
/* ===== OVERLAY ===== */
.numericpad-overlay[b-7o4evjepgc] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3200;
}
/* ===== POPUP ===== */

/* ===== WRAPPER (ANIMATE Ở ĐÂY) ===== */
.numericpad-wrapper[b-7o4evjepgc] {
    animation: numericpad-pop-b-7o4evjepgc .15s ease-out;
    transform-origin: center;
}

/* ⚠️ KHÔNG để transform khác ở container */
@keyframes numericpad-pop-b-7o4evjepgc {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ===== CONTAINER ===== */
.numericpad-container[b-7o4evjepgc] {
    width: 360px;
    max-width: 95vw;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
    padding: 16px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto;
    position: relative; /* QUAN TRỌNG */
}
/* ===== HEADER ===== */

.numericpad-header[b-7o4evjepgc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.numericpad-close[b-7o4evjepgc] {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

    .numericpad-close:hover[b-7o4evjepgc] {
        color: #dc3545;
    }
/* ===== DISPLAY ===== */

.numericpad-display[b-7o4evjepgc] {
    margin-bottom: 10px;
}

.numericpad-input[b-7o4evjepgc] {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e3e6ea;
    padding: 6px 10px;
    font-size: 18px;
    background: #f8fafc;
}
/* ===== KEYS ===== */

.numericpad-keys[b-7o4evjepgc] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.numericpad-row[b-7o4evjepgc] {
    display: flex;
    gap: 10px;
}

.numericpad-key[b-7o4evjepgc] {
    flex: 1;
    height: 52px;
    border-radius: 12px;
    border: none;
    background: #f1f3f5;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

    .numericpad-key:hover[b-7o4evjepgc] {
        background: #e9ecef;
    }

    .numericpad-key:active[b-7o4evjepgc] {
        transform: translateY(1px);
    }

    .numericpad-key.func[b-7o4evjepgc] {
        background: #ffe7e0;
    }
/* ===== ACTION ===== */

.numericpad-actions[b-7o4evjepgc] {
    margin-top: 6px;
}

.numericpad-confirm[b-7o4evjepgc] {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    background: #0d6efd;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
/* ===== MOBILE ===== */

@media (max-width: 420px) {
    .numericpad-container[b-7o4evjepgc] {
        width: 100%;
        border-radius: 0;
        height: 100%;
    }
}
/* _content/Depot/Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-0uz4f6ozla] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0uz4f6ozla] {
    flex: 1;
}

.sidebar[b-0uz4f6ozla] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0uz4f6ozla] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-0uz4f6ozla]  a, .top-row[b-0uz4f6ozla]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-0uz4f6ozla]  a:hover, .top-row[b-0uz4f6ozla]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-0uz4f6ozla]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-0uz4f6ozla] {
        justify-content: space-between;
    }

        .top-row[b-0uz4f6ozla]  a, .top-row[b-0uz4f6ozla]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-0uz4f6ozla] {
        flex-direction: row;
    }

    .sidebar[b-0uz4f6ozla] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0uz4f6ozla] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-0uz4f6ozla]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-0uz4f6ozla], article[b-0uz4f6ozla] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-0uz4f6ozla] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-0uz4f6ozla] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Depot/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-tuvpjgfes1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-tuvpjgfes1] {
    flex: 1;
}

.sidebar[b-tuvpjgfes1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-tuvpjgfes1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-tuvpjgfes1]  a, .top-row[b-tuvpjgfes1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-tuvpjgfes1]  a:hover, .top-row[b-tuvpjgfes1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-tuvpjgfes1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-tuvpjgfes1] {
        justify-content: space-between;
    }

    .top-row[b-tuvpjgfes1]  a, .top-row[b-tuvpjgfes1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-tuvpjgfes1] {
        flex-direction: row;
    }

    .sidebar[b-tuvpjgfes1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tuvpjgfes1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-tuvpjgfes1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-tuvpjgfes1], article[b-tuvpjgfes1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-tuvpjgfes1] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-tuvpjgfes1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Depot/Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-container[b-thbzannnei] {
    height: 100vh;
    width: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    color: white;
    border-radius: 0 !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    scrollbar-width: thin;
    scrollbar-color: rgba(100,181,246,0.3) transparent;
}

    .sidebar-container[b-thbzannnei]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-container[b-thbzannnei]::-webkit-scrollbar-thumb {
        background: rgba(100,181,246,0.3);
        border-radius: 4px;
    }

/* Header logo */
.sidebar-header[b-thbzannnei] {
    padding: 20px 16px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 8px;
    background: rgba(0,0,0,0.15);
}

/* Nav links */
[b-thbzannnei] .mud-nav-link {
    border-radius: 10px !important;
    margin: 1px 8px !important;
    color: rgba(255,255,255,0.82) !important;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease !important;
}

    [b-thbzannnei] .mud-nav-link:hover {
        background: rgba(255,255,255,0.09) !important;
        color: white !important;
        transform: translateX(4px);
    }

    [b-thbzannnei] .mud-nav-link.active {
        background: linear-gradient(90deg, rgba(21,101,192,0.55), rgba(100,181,246,0.30)) !important;
        color: white !important;
        border-left: 3px solid #64b5f6 !important;
        box-shadow: 0 2px 10px rgba(21,101,192,0.25) !important;
    }

    /* Icons */
    [b-thbzannnei] .mud-nav-link .mud-icon-root {
        color: #90caf9 !important;
        font-size: 20px !important;
    }

    [b-thbzannnei] .mud-nav-link.active .mud-icon-root {
        color: #64b5f6 !important;
    }

    /* Submenu items */
    [b-thbzannnei] .ms-4 .mud-nav-link,
    [b-thbzannnei] .mud-nav-link.ms-4 {
        font-size: 0.82rem !important;
        border-radius: 8px !important;
        margin: 1px 8px 1px 16px !important;
        color: rgba(255,255,255,0.7) !important;
    }

        [b-thbzannnei] .ms-4 .mud-nav-link .mud-icon-root,
        [b-thbzannnei] .mud-nav-link.ms-4 .mud-icon-root {
            font-size: 17px !important;
            color: #64b5f6 !important;
        }

/* Divider */
[b-thbzannnei] .mud-divider {
    border-color: rgba(255,255,255,0.12) !important;
}
