/* Selector de bodega activa (multi-establecimiento) */
.bodega-selector-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}

.bodega-selector-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475467;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bodega-selector-label i {
    color: #2e6da4;
}

.bodega-tabs {
    display: inline-flex;
    gap: 6px;
    background: #f2f4f7;
    padding: 4px;
    border-radius: 10px;
}

.bodega-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: transparent;
    color: #475467;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.bodega-tab i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.bodega-tab:hover:not(.active):not(:disabled) {
    background: #e4e7ec;
    color: #1e3a5f;
}

.bodega-tab.active {
    background: #2e6da4;
    color: #fff;
    box-shadow: 0 1px 3px rgba(46, 109, 164, 0.35);
}

.bodega-tab:disabled {
    opacity: 0.6;
    cursor: default;
}

@media (max-width: 480px) {
    .bodega-tabs { width: 100%; }
    .bodega-tab { flex: 1; justify-content: center; padding: 8px 10px; }
}

/* Sub-selector de bodega del supervisor (debajo del filtro de tecnico) */
.ft-bodega-sub {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.ft-bodega-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475467;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ft-bodega-label i { color: #2e6da4; }
.ft-bodega-tabs {
    display: inline-flex;
    gap: 6px;
    background: #f2f4f7;
    padding: 4px;
    border-radius: 10px;
}
.ft-bodega-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: transparent;
    color: #475467;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.ft-bodega-tab i { font-size: 0.8rem; opacity: 0.8; }
.ft-bodega-tab:hover:not(.active) { background: #e4e7ec; color: #1e3a5f; }
.ft-bodega-tab.active {
    background: #2e6da4;
    color: #fff;
    box-shadow: 0 1px 3px rgba(46, 109, 164, 0.35);
}
