/* /Layout/MainLayout.razor.rz.scp.css */
/* ========== Page Wrapper ========== */
.page-wrapper[b-my1rp3to6h] {
    display: flex;
    min-height: 100vh;
    background: var(--gradient-bg);
    padding: 16px;
    gap: 16px;
}

/* ========== Sidebar ========== */
.sidebar[b-my1rp3to6h] {
    background: var(--sidebar);
    border-radius: var(--radius-m);
    border: 1px solid var(--sidebar-border);
    box-shadow: 0 4px 5.25px -2px rgba(16, 24, 40, 0.03);
    transition: width 0.3s ease;
    overflow: hidden;
    height: calc(100vh - 32px);
    position: sticky;
    top: 16px;
}

.sidebar.expanded[b-my1rp3to6h] {
    width: 240px;
    min-width: 240px;
}

.sidebar.collapsed[b-my1rp3to6h] {
    width: 80px;
    min-width: 80px;
}

/* ========== Main Content Wrapper ========== */
.main-content-wrapper[b-my1rp3to6h] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
    overflow-x: hidden;
}

/* ========== Content Area ========== */
.content-area[b-my1rp3to6h] {
    flex: 1;
    padding: 0 5px;
    overflow-y: auto;
}

/* ========== Responsive Design ========== */

/* Mobile devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .page-wrapper[b-my1rp3to6h] {
        padding: 8px;
        gap: 8px;
        flex-direction: column;
    }

    .sidebar[b-my1rp3to6h] {
        position: fixed;
        top: 8px;
        left: 8px;
        height: calc(100vh - 16px);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.show[b-my1rp3to6h] {
        transform: translateX(0);
    }

    .sidebar.expanded[b-my1rp3to6h] {
        width: 280px;
    }

    .header-bar[b-my1rp3to6h] {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 16px;
    }

    .header-greeting[b-my1rp3to6h] {
        font-size: 20px;
    }

    .header-subtitle[b-my1rp3to6h] {
        font-size: 12px;
    }

    .header-right[b-my1rp3to6h] {
        width: 100%;
    }

    .btn-new-task[b-my1rp3to6h] {
        width: 100%;
        padding: 12px 20px;
        font-size: 12px;
    }

    .content-area[b-my1rp3to6h] {
        padding: 0 16px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .page-wrapper[b-my1rp3to6h] {
        padding: 12px;
        gap: 12px;
    }

    .sidebar[b-my1rp3to6h] {
        top: 12px;
        height: calc(100vh - 24px);
    }

    .header-bar[b-my1rp3to6h] {
        padding: 8px 18px;
    }

    .header-greeting[b-my1rp3to6h] {
        font-size: 24px;
    }

    .content-area[b-my1rp3to6h] {
        padding: 0 18px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .page-wrapper[b-my1rp3to6h] {
        padding: 14px;
        gap: 14px;
    }

    .sidebar[b-my1rp3to6h] {
        top: 14px;
        height: calc(100vh - 28px);
    }

    .sidebar.expanded[b-my1rp3to6h] {
        width: 200px;
        min-width: 200px;
    }

    .header-bar[b-my1rp3to6h] {
        padding: 8px 20px;
    }

    .header-greeting[b-my1rp3to6h] {
        font-size: 26px;
    }

    .content-area[b-my1rp3to6h] {
        padding: 0 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .page-wrapper[b-my1rp3to6h] {
        padding: 16px;
        gap: 16px;
    }

    .sidebar[b-my1rp3to6h] {
        top: 16px;
        height: calc(100vh - 32px);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .page-wrapper[b-my1rp3to6h] {
        padding: 16px 16px 16px 10px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ========== Sidebar Menu ========== */
.sidebar-menu[b-p92oszqttc] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    overflow: hidden;
}

/* ========== Sidebar Header ========== */
.sidebar-header[b-p92oszqttc] {
    margin-bottom: 24px;
}

.sidebar-header-content[b-p92oszqttc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.sidebar-header-collapsed[b-p92oszqttc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-section[b-p92oszqttc] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark[b-p92oszqttc] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background-color: var(--primary);
    border-radius: 4px;
}

.logo-text[b-p92oszqttc] {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--sidebar-primary-foreground);
    white-space: nowrap;
}

.toggle-btn[b-p92oszqttc] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--sidebar-foreground);
}

.toggle-btn:hover[b-p92oszqttc] {
    background-color: var(--sidebar-accent);
}

.toggle-btn .material-icons[b-p92oszqttc] {
    font-size: 20px;
}

/* ========== Sidebar Content ========== */
.sidebar-content[b-p92oszqttc] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

.sidebar-content[b-p92oszqttc]::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content[b-p92oszqttc]::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-content[b-p92oszqttc]::-webkit-scrollbar-thumb {
    background-color: var(--sidebar-border);
    border-radius: 3px;
}

.sidebar-content[b-p92oszqttc]::-webkit-scrollbar-thumb:hover {
    background-color: var(--muted-foreground);
}

/* ========== Navigation Items ========== */
.nav-items[b-p92oszqttc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item[b-p92oszqttc] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--sidebar-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.nav-item .material-icons[b-p92oszqttc] {
    font-size: 10px;
    max-width: 20px;
    color: var(--sidebar-foreground);
    flex-shrink: 0;
}

.nav-item .nav-text[b-p92oszqttc] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-item:hover[b-p92oszqttc] {
    background-color: var(--sidebar-accent);
}

.nav-item.active[b-p92oszqttc] {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.nav-item.active .material-icons[b-p92oszqttc] {
    color: var(--accent-foreground);
}

/* Collapsed nav items centered */
.sidebar.collapsed .nav-item[b-p92oszqttc] {
    justify-content: center;
    padding: 12px;
}

/* ========== Nav Divider ========== */
.nav-divider[b-p92oszqttc] {
    height: 1px;
    background-color: var(--sidebar-border);
    margin: 16px 0;
}

/* ========== Nav Section Titles ========== */
.nav-section-title[b-p92oszqttc] {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0 8px 16px;
}

.nav-section-subtitle[b-p92oszqttc] {
    font-size: 12px;
    font-style: italic;
    color: var(--muted-foreground);
    padding: 8px 16px;
}

/* ========== Sidebar Footer ========== */
.sidebar-footer[b-p92oszqttc] {
    padding-top: 16px;
    border-top: 1px solid var(--sidebar-border);
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-btn[b-p92oszqttc] {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sidebar-accent);
    border: 1px solid var(--sidebar-border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--sidebar-foreground);
}

.settings-btn:hover[b-p92oszqttc] {
    background-color: var(--muted);
}

.settings-btn .material-icons[b-p92oszqttc] {
    font-size: 18px;
}

.user-section[b-p92oszqttc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.user-name[b-p92oszqttc] {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--sidebar-accent-foreground);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-btn[b-p92oszqttc] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: var(--radius-sm);
}

.logout-btn:hover[b-p92oszqttc] {
    background-color: var(--sidebar-accent);
}

.logout-btn .material-icons[b-p92oszqttc] {
    font-size: 24px;
    color: var(--primary);
}

.footer-collapsed[b-p92oszqttc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-btn[b-p92oszqttc] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sidebar-accent);
    border: 1px solid var(--sidebar-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--sidebar-foreground);
}

.icon-btn:hover[b-p92oszqttc] {
    background-color: var(--muted);
}

.icon-btn.logout[b-p92oszqttc] {
    background: transparent;
    border: none;
}

.icon-btn .material-icons[b-p92oszqttc] {
    font-size: 18px;
}

.icon-btn.logout .material-icons[b-p92oszqttc] {
    font-size: 24px;
    color: var(--primary);
}

/* ========== Responsive Design ========== */

/* Mobile devices */
@media (max-width: 767.98px) {
    .sidebar-menu[b-p92oszqttc] {
        padding: 16px;
    }

    .logo-mark[b-p92oszqttc] {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .logo-text[b-p92oszqttc] {
        font-size: 13px;
    }

    .nav-item[b-p92oszqttc] {
        padding: 10px 14px;
        font-size: 13px;
    }

    .user-name[b-p92oszqttc] {
        font-size: 16px;
    }
}

/* Tablet devices */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sidebar-menu[b-p92oszqttc] {
        padding: 20px;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* ========== Header Bar ========== */
.header-bar[b-zcom3nx89w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 22px;
}

.header-left[b-zcom3nx89w] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-greeting[b-zcom3nx89w] {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.header-subtitle[b-zcom3nx89w] {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: normal;
    color: var(--card-foreground);
    margin: 0;
}

.header-right[b-zcom3nx89w] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-new-task[b-zcom3nx89w] {
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-new-task:hover[b-zcom3nx89w] {
    background-color: #B00505;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 7, 6, 0.3);
}
/* /Pages/Views/KanbanBoard.razor.rz.scp.css */
/* =========================================================
   KanbanBoard — Scoped Styles
   Matches WMSDesign.pen "Kanban Board" frame
   ========================================================= */

/* ---- Toolbar (Add button + pager) ---- */
.kanban-toolbar[b-g9i0err99t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 24px;
}

.pager-container[b-g9i0err99t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

/* ---- Horizontal board layout ---- */
.kanban-board[b-g9i0err99t] {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: flex-start;
    padding: 0 8px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

/* Hide only the vertical column scrollbars while keeping column scrolling working*/
.kanban-column[b-g9i0err99t] {
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* Old Edge/IE */
}

.kanban-column[b-g9i0err99t]::-webkit-scrollbar {
    display: none;              /* Chrome, Edge, Safari */
}

/* ---- Column ---- */
.kanban-column[b-g9i0err99t] {
    width: 320px;
    min-width: 320px;
    border: 2px solid;          /* color set inline per-status */
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    flex: 0 0 auto;
}

/* ---- Column header (dot + title + count) ---- */
.col-header[b-g9i0err99t] {
    display: flex;
    align-items: center;
    height: 24px;
    gap: 8px;
}

.col-dot[b-g9i0err99t] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.col-title[b-g9i0err99t] {
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.col-count[b-g9i0err99t] {
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
}

/* ---- Drop zone ---- */
[b-g9i0err99t] .kanban-dropzone {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 80px;
    flex: 0 0 auto;
}

.drop-empty[b-g9i0err99t] {
    padding: 24px 12px;
    text-align: center;
    color: #9CA3AF;
    font-style: italic;
    font-size: 12px;
    font-family: 'Inter', 'Albert Sans', sans-serif;
}

/* ---- Add Item button ---- */
.col-add-btn[b-g9i0err99t] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 40px;
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    color: #6B7280;
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}

.col-add-btn:hover[b-g9i0err99t] {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.col-add-icon[b-g9i0err99t] {
    font-size: 18px;
    line-height: 1;
    color: #6B7280;
}

/* ---- Kanban Card ---- */
[b-g9i0err99t] .kanban-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: grab;
    transition: box-shadow 0.15s ease, transform 0.1s ease;
    font-family: 'Inter', 'Albert Sans', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

[b-g9i0err99t] .kanban-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

[b-g9i0err99t] .kanban-card:active {
    cursor: grabbing;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

/* ---- Card: status label chip ---- */
[b-g9i0err99t] .card-label {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    width: fit-content;
}

/* ---- Card: title ---- */
[b-g9i0err99t] .card-title {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
    word-break: break-word;
}

/* ---- Card: dynamic field rows ---- */
[b-g9i0err99t] .card-fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

[b-g9i0err99t] .card-field-row {
    display: flex;
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
    flex-wrap: wrap;
}

[b-g9i0err99t] .card-field-key {
    color: #9CA3AF;
    font-weight: 500;
    flex-shrink: 0;
}

[b-g9i0err99t] .card-field-key::after {
    content: ':';
}

[b-g9i0err99t] .card-field-val {
    color: #374151;
    font-weight: 400;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---- Card: footer (accent bar + edit button) ---- */
[b-g9i0err99t] .card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

[b-g9i0err99t] .card-accent-bar {
    height: 3px;
    border-radius: 2px;
    width: 32px;
    flex-shrink: 0;
}
/* /Pages/Views/ListView.razor.rz.scp.css */
/* =========================================================
   ListView — Scoped Styles
   Matches WMSDesign.pen "List View" frame
   ========================================================= */

/* ---- Wrapper ---- */
.list-view-wrapper[b-t45kmcsklx] {
    background: #F9FAFB;
    padding: 24px 32px;
    min-height: 100%;
    font-family: 'Inter', 'Albert Sans', sans-serif;
}

/* ---- Top toolbar (Add button + pager) ---- */
.list-toolbar[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 24px;
}

.pager-container[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

/* ---- Section list ---- */
.list-container[b-t45kmcsklx] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---- Status section ---- */
.status-section[b-t45kmcsklx] {
    display: flex;
    flex-direction: column;
}

/* ---- Section header (collapsible pill) ---- */
.status-header[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    padding: 0 12px 0 12px;
    border-radius: 6px 6px 0px 0px;
    cursor: pointer;
    gap: 8px;
    user-select: none;
    transition: filter 0.15s ease;
    background-image: none !important;
    background-clip: padding-box !important;
}

.status-header *[b-t45kmcsklx] {
    background-image: none !important;
}

.status-header-left[b-t45kmcsklx], .status-header-right[b-t45kmcsklx], .status-title[b-t45kmcsklx] {
    background: transparent !important;
    background-image: none !important;
}

.status-header:hover[b-t45kmcsklx] {
    filter: brightness(0.96);
}

.status-header-left[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.status-header-left .rz-icon[b-t45kmcsklx],
.status-header-right .rz-button[b-t45kmcsklx] {
    color: inherit !important;
}

.status-header-right[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.status-title[b-t45kmcsklx] {
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.status-badge[b-t45kmcsklx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-width: 24px;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

/* ---- Table container (bordered card) ---- */
.status-table[b-t45kmcsklx] {
    border: 2px solid;           /* color set inline per-status */
    border-radius: 0px 0px 6px 6px;
    background: #fcfbfb;
    overflow-x: auto;
}

/* ---- Table column-header row ---- */
.table-header-row[b-t45kmcsklx] {
    display: flex;
    align-items: center;
    height: 40px;
    background: #eff1f2;
    padding: 0 16px 0 50px;     /* left-pad aligns with row content past the action icon */
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    gap: 12px;
    border-bottom: 1px solid #E5E7EB;
    min-width: fit-content;
}

/* ---- Data row (rendered by RadzenDropZoneContainer Template) ---- */
[b-t45kmcsklx] .list-row {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px 12px 20px;
    gap: 12px;
    background: #ffffff;
    border-top: 1px solid #E5E7EB;
    cursor: grab;
    transition: background 0.15s ease;
    font-family: 'Inter', 'Albert Sans', sans-serif;
    font-size: 12px;
    color: #111827;
    min-width: fit-content;
}

[b-t45kmcsklx] .list-row:hover {
    background: #F9FAFB;
}

[b-t45kmcsklx] .list-row:active {
    cursor: grabbing;
    background: #F3F4F6;
}

/* ---- Column widths ---- */
.col-actions[b-t45kmcsklx],
[b-t45kmcsklx] .col-actions {
    width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.col-primary[b-t45kmcsklx],
[b-t45kmcsklx] .col-primary {
    width: 140px;
    flex-shrink: 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col-field[b-t45kmcsklx],
[b-t45kmcsklx] .col-field {
    width: 130px;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    color: #374151;
}

.col-field.col-last[b-t45kmcsklx],
[b-t45kmcsklx] .col-field.col-last {
    flex: 1;
    min-width: 130px;
    width: auto;
}

/* ---- Empty drop zone ---- */
[b-t45kmcsklx] .drop-empty {
    padding: 18px;
    text-align: center;
    color: #9CA3AF;
    font-style: italic;
    font-size: 12px;
    font-family: 'Inter', 'Albert Sans', sans-serif;
    min-width: fit-content;
}
