/* _content/WMS.Presentation/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-sennieycod] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-sennieycod] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/WMS.Presentation/Components/Pages/Definiciones/Ubicaciones/PasillosVisuales.razor.rz.scp.css */
/* Contenedor principal */
.aisles-container[b-yhr095rvxj] {
    padding: 1.5rem;
}

/* Grid EXACTO copiado de ZonasVisuales.razor pero para pasillos */
.warehouse-grid[b-yhr095rvxj] {
    display: grid;
    grid-template-columns: repeat(25, 1fr);
    grid-template-rows: repeat(25, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 3px;
    width: 100%;
    height: 600px;
    background: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    position: relative;
    background-image: linear-gradient(to right, #dee2e6 1px, transparent 1px), linear-gradient(to bottom, #dee2e6 1px, transparent 1px);
    background-size: calc(100% / 25) calc(100% / 25);
}

/* CSS EXACTO copiado de ZonasVisuales.razor pero para pasillos CON COLOR TERTIARY */
.aisle[b-yhr095rvxj] {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); /* Color Tertiary Orange */
    border: 2px solid #e65100;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
}

    .aisle:hover[b-yhr095rvxj] {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    }

    .aisle.selected[b-yhr095rvxj] {
        border-color: #ffc107;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
    }

    .aisle.dragging[b-yhr095rvxj] {
        opacity: 0.8;
        transform: scale(1.05);
        z-index: 100;
    }

/* Colores por AisleSide */
.aisle.aisle-a[b-yhr095rvxj] {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); /* Lado A - Orange */
}

.aisle.aisle-b[b-yhr095rvxj] {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%); /* Lado B - Deep Orange */
}

.aisle.aisle-both[b-yhr095rvxj] {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 50%, #f57c00 100%); /* Ambos lados - Gradient */
}

.aisle-content[b-yhr095rvxj] {
    text-align: center;
    padding: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    gap: 2px;
}

/* Pasillo grande (área >= 4) - LETRAS MÁS GRANDES Y LEGIBLES */
.aisle-name[b-yhr095rvxj] {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.aisle-side[b-yhr095rvxj] {
    font-size: 11px;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.aisle-bin[b-yhr095rvxj] {
    font-size: 10px;
    opacity: 0.9;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Pasillo mediano (área >= 2) - LETRAS MÁS GRANDES */
.aisle-name-small[b-yhr095rvxj] {
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Pasillo pequeño (área < 2) - LETRAS MÁS GRANDES */
.aisle-bin-only[b-yhr095rvxj] {
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Resize handles exactos como ZonasVisuales */
.resize-handle[b-yhr095rvxj] {
    position: absolute;
    background: #ffc107;
    border: 2px solid white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    z-index: 20;
}

    .resize-handle.nw[b-yhr095rvxj] {
        top: -6px;
        left: -6px;
        cursor: nw-resize;
    }

    .resize-handle.ne[b-yhr095rvxj] {
        top: -6px;
        right: -6px;
        cursor: ne-resize;
    }

    .resize-handle.sw[b-yhr095rvxj] {
        bottom: -6px;
        left: -6px;
        cursor: sw-resize;
    }

    .resize-handle.se[b-yhr095rvxj] {
        bottom: -6px;
        right: -6px;
        cursor: se-resize;
    }

    .resize-handle.n[b-yhr095rvxj] {
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: n-resize;
    }

    .resize-handle.s[b-yhr095rvxj] {
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: s-resize;
    }

    .resize-handle.w[b-yhr095rvxj] {
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        cursor: w-resize;
    }

    .resize-handle.e[b-yhr095rvxj] {
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        cursor: e-resize;
    }

.legend-color[b-yhr095rvxj] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.aisles-empty-state[b-yhr095rvxj] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
}

.context-menu[b-yhr095rvxj] {
    animation: contextMenuAppear-b-yhr095rvxj 0.2s ease-out;
}

@keyframes contextMenuAppear-b-yhr095rvxj {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/WMS.Presentation/Components/Pages/Definiciones/Ubicaciones/RacksVisuales.razor.rz.scp.css */
/* Contenedor principal */
.racks-container[b-4dimp3v9lq] {
    padding: 1.5rem;
}

/* Grid EXACTO copiado de ZonasVisuales.razor pero para racks */
.warehouse-grid[b-4dimp3v9lq] {
    display: grid;
    grid-template-columns: repeat(25, 1fr);
    grid-template-rows: repeat(25, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 3px;
    width: 100%;
    height: 600px;
    background: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    position: relative;
    background-image: linear-gradient(to right, #dee2e6 1px, transparent 1px), linear-gradient(to bottom, #dee2e6 1px, transparent 1px);
    background-size: calc(100% / 25) calc(100% / 25);
}

/* CSS EXACTO copiado de ZonasVisuales.razor pero para racks CON COLOR PRIMARY */
.rack[b-4dimp3v9lq] {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%); /* Color Primary Blue */
    border: 2px solid #0d47a1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
}

    .rack:hover[b-4dimp3v9lq] {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    }

    .rack.selected[b-4dimp3v9lq] {
        border-color: #ffc107;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
    }

    .rack.dragging[b-4dimp3v9lq] {
        opacity: 0.8;
        transform: scale(1.05);
        z-index: 100;
    }

/* Colores por RackType */
.rack.rack-singlesided[b-4dimp3v9lq] {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%); /* Single Sided - Blue */
}

.rack.rack-doublesided[b-4dimp3v9lq] {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%); /* Double Sided - Dark Blue */
}

.rack-content[b-4dimp3v9lq] {
    text-align: center;
    padding: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    gap: 2px;
}

/* Rack grande (área >= 4) - LETRAS MÁS GRANDES Y LEGIBLES */
.rack-name[b-4dimp3v9lq] {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.rack-type[b-4dimp3v9lq] {
    font-size: 11px;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.rack-bin[b-4dimp3v9lq] {
    font-size: 10px;
    opacity: 0.9;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Rack mediano (área >= 2) - LETRAS MÁS GRANDES */
.rack-name-small[b-4dimp3v9lq] {
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Rack pequeño (área < 2) - LETRAS MÁS GRANDES */
.rack-bin-only[b-4dimp3v9lq] {
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Resize handles exactos como ZonasVisuales */
.resize-handle[b-4dimp3v9lq] {
    position: absolute;
    background: #ffc107;
    border: 2px solid white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    z-index: 20;
}

    .resize-handle.nw[b-4dimp3v9lq] {
        top: -6px;
        left: -6px;
        cursor: nw-resize;
    }

    .resize-handle.ne[b-4dimp3v9lq] {
        top: -6px;
        right: -6px;
        cursor: ne-resize;
    }

    .resize-handle.sw[b-4dimp3v9lq] {
        bottom: -6px;
        left: -6px;
        cursor: sw-resize;
    }

    .resize-handle.se[b-4dimp3v9lq] {
        bottom: -6px;
        right: -6px;
        cursor: se-resize;
    }

    .resize-handle.n[b-4dimp3v9lq] {
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: n-resize;
    }

    .resize-handle.s[b-4dimp3v9lq] {
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: s-resize;
    }

    .resize-handle.w[b-4dimp3v9lq] {
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        cursor: w-resize;
    }

    .resize-handle.e[b-4dimp3v9lq] {
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        cursor: e-resize;
    }

.legend-color[b-4dimp3v9lq] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.racks-empty-state[b-4dimp3v9lq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
}

.context-menu[b-4dimp3v9lq] {
    animation: contextMenuAppear-b-4dimp3v9lq 0.2s ease-out;
}

@keyframes contextMenuAppear-b-4dimp3v9lq {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/WMS.Presentation/Components/Pages/Definiciones/Ubicaciones/UbicacionesVisuales.razor.rz.scp.css */
/* ========================================
   UBICACIONES VISUALIZER - MATRIZ DINÁMICA
   ======================================== */

.location-matrix-container[b-39vbw7yv7r] {
    width: 100%;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: auto;
    max-height: 70vh;
}

.location-matrix[b-39vbw7yv7r] {
    display: grid;
    gap: 2px;
    width: fit-content;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ENCABEZADOS DE MATRIZ
   ======================================== */

.matrix-header[b-39vbw7yv7r] {
    background: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-weight: bold;
    border-radius: 4px;
}

.matrix-level-header[b-39vbw7yv7r] {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: 1px solid #1976D2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.matrix-position-header[b-39vbw7yv7r] {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border: 1px solid #388E3C;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========================================
   CELDAS DE UBICACIÓN
   ======================================== */

.location-cell[b-39vbw7yv7r] {
    min-width: 80px;
    min-height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.location-cell:hover[b-39vbw7yv7r] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* ========================================
   UBICACIONES EXISTENTES
   ======================================== */

.location-exists[b-39vbw7yv7r] {
    border-width: 2px;
    border-style: solid;
}

.location-content[b-39vbw7yv7r] {
    text-align: center;
    padding: 4px;
    width: 100%;
}

.location-code[b-39vbw7yv7r] {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 2px;
    line-height: 1.1;
}

.location-status[b-39vbw7yv7r] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   POSICIONES VACÍAS
   ======================================== */

.location-empty[b-39vbw7yv7r] {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    color: #999;
}

.location-empty:hover[b-39vbw7yv7r] {
    background: #e3f2fd;
    border-color: #2196F3;
    color: #2196F3;
}

.empty-position[b-39vbw7yv7r] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.location-empty:hover .empty-position[b-39vbw7yv7r] {
    opacity: 1;
}

/* ========================================
   ESTADOS DE UBICACIÓN - COLORES
   ======================================== */

.location-status-active[b-39vbw7yv7r] {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #2E7D32;
}

.location-status-blocked[b-39vbw7yv7r] {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
    color: #C62828;
}

.location-status-quarantine[b-39vbw7yv7r] {
    background-color: rgba(255, 152, 0, 0.1);
    border-color: #FF9800;
    color: #E65100;
}

.location-status-maintenance[b-39vbw7yv7r] {
    background-color: rgba(33, 150, 243, 0.1);
    border-color: #2196F3;
    color: #1565C0;
}

.location-status-occupied[b-39vbw7yv7r] {
    background-color: rgba(156, 39, 176, 0.1);
    border-color: #9C27B0;
    color: #6A1B9A;
}

.location-status-unknown[b-39vbw7yv7r] {
    background-color: rgba(158, 158, 158, 0.1);
    border-color: #9E9E9E;
    color: #424242;
}

/* ========================================
   LEYENDA DE COLORES
   ======================================== */

.legend-color[b-39vbw7yv7r] {
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legend-color.location-status-active[b-39vbw7yv7r] {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #2E7D32;
}

.legend-color.location-status-blocked[b-39vbw7yv7r] {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
    color: #C62828;
}

.legend-color.location-status-quarantine[b-39vbw7yv7r] {
    background-color: rgba(255, 152, 0, 0.1);
    border-color: #FF9800;
    color: #E65100;
}

.legend-color.location-status-maintenance[b-39vbw7yv7r] {
    background-color: rgba(33, 150, 243, 0.1);
    border-color: #2196F3;
    color: #1565C0;
}

.legend-color.location-status-occupied[b-39vbw7yv7r] {
    background-color: rgba(156, 39, 176, 0.1);
    border-color: #9C27B0;
    color: #6A1B9A;
}

/* ========================================
   MENÚ CONTEXTUAL
   ======================================== */

.context-menu[b-39vbw7yv7r] {
    animation: contextMenuAppear-b-39vbw7yv7r 0.2s ease-out;
}

@keyframes contextMenuAppear-b-39vbw7yv7r {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .location-cell[b-39vbw7yv7r] {
        min-width: 70px;
        min-height: 45px;
    }

    .location-code[b-39vbw7yv7r] {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .location-matrix-container[b-39vbw7yv7r] {
        padding: 15px;
        max-height: 60vh;
    }

    .location-cell[b-39vbw7yv7r] {
        min-width: 60px;
        min-height: 40px;
    }

    .location-code[b-39vbw7yv7r] {
        font-size: 9px;
    }

    .matrix-level-header[b-39vbw7yv7r],
    .matrix-position-header[b-39vbw7yv7r] {
        min-height: 35px;
    }
}

@media (max-width: 480px) {
    .location-matrix-container[b-39vbw7yv7r] {
        padding: 10px;
        max-height: 50vh;
    }

    .location-cell[b-39vbw7yv7r] {
        min-width: 50px;
        min-height: 35px;
    }

    .location-code[b-39vbw7yv7r] {
        font-size: 8px;
    }

    .matrix-level-header[b-39vbw7yv7r],
    .matrix-position-header[b-39vbw7yv7r] {
        min-height: 30px;
    }

    .location-matrix[b-39vbw7yv7r] {
        gap: 1px;
        padding: 5px;
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */

@keyframes locationAppear-b-39vbw7yv7r {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.location-exists[b-39vbw7yv7r] {
    animation: locationAppear-b-39vbw7yv7r 0.3s ease-out;
}

/* Efecto de pulso para ubicaciones recién creadas */
@keyframes locationPulse-b-39vbw7yv7r {
    0% { box-shadow: 0 0 0 0 currentColor; }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.location-new[b-39vbw7yv7r] {
    animation: locationPulse-b-39vbw7yv7r 2s infinite;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

.location-matrix-container[b-39vbw7yv7r]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.location-matrix-container[b-39vbw7yv7r]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.location-matrix-container[b-39vbw7yv7r]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.location-matrix-container[b-39vbw7yv7r]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* _content/WMS.Presentation/Components/Pages/Definiciones/Ubicaciones/ZonasVisuales.razor.rz.scp.css */
/* Contenedor principal */
.zones-container[b-tsieaaho7d] {
    padding: 1.5rem;
}

/* Grid EXACTO copiado de WarehouseGrid.razor */
.warehouse-grid[b-tsieaaho7d] {
    display: grid;
    grid-template-columns: repeat(25, 1fr);
    grid-template-rows: repeat(25, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 3px;
    width: 100%;
    height: 600px;
    background: #e9ecef;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    position: relative;
    background-image: linear-gradient(to right, #dee2e6 1px, transparent 1px), linear-gradient(to bottom, #dee2e6 1px, transparent 1px);
    background-size: calc(100% / 25) calc(100% / 25);
}

/* CSS EXACTO copiado de WarehouseGrid.razor */
.zone[b-tsieaaho7d] {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border: 2px solid #2c5aa0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
}

    .zone:hover[b-tsieaaho7d] {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }

    .zone.selected[b-tsieaaho7d] {
        border-color: #ffc107;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
    }

    .zone.dragging[b-tsieaaho7d] {
        opacity: 0.8;
        transform: scale(1.05);
        z-index: 100;
    }

/* Colores por ZoneType según enum */
.zone.zone-picking[b-tsieaaho7d] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.zone.zone-reserve[b-tsieaaho7d] {
    background: linear-gradient(135deg, #6f42c1 0%, #6610f2 100%);
}

.zone.zone-quarantine[b-tsieaaho7d] {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.zone.zone-production[b-tsieaaho7d] {
    background: linear-gradient(135deg, #fd7e14 0%, #e67e22 100%);
}

.zone.zone-receiving[b-tsieaaho7d] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.zone.zone-shipping[b-tsieaaho7d] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #333 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.zone-content[b-tsieaaho7d] {
    text-align: center;
    padding: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    gap: 2px;
}

/* Zona grande (área >= 4) - LETRAS MÁS GRANDES Y LEGIBLES */
.zone-name[b-tsieaaho7d] {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.zone-type[b-tsieaaho7d] {
    font-size: 11px;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.zone-bin[b-tsieaaho7d] {
    font-size: 10px;
    opacity: 0.9;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Zona mediana (área >= 2) - LETRAS MÁS GRANDES */
.zone-name-small[b-tsieaaho7d] {
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Zona pequeña (área < 2) - LETRAS MÁS GRANDES */
.zone-bin-only[b-tsieaaho7d] {
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Resize handles exactos como WarehouseGrid */
.resize-handle[b-tsieaaho7d] {
    position: absolute;
    background: #ffc107;
    border: 2px solid white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    z-index: 20;
}

    .resize-handle.nw[b-tsieaaho7d] {
        top: -6px;
        left: -6px;
        cursor: nw-resize;
    }

    .resize-handle.ne[b-tsieaaho7d] {
        top: -6px;
        right: -6px;
        cursor: ne-resize;
    }

    .resize-handle.sw[b-tsieaaho7d] {
        bottom: -6px;
        left: -6px;
        cursor: sw-resize;
    }

    .resize-handle.se[b-tsieaaho7d] {
        bottom: -6px;
        right: -6px;
        cursor: se-resize;
    }

    .resize-handle.n[b-tsieaaho7d] {
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: n-resize;
    }

    .resize-handle.s[b-tsieaaho7d] {
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        cursor: s-resize;
    }

    .resize-handle.w[b-tsieaaho7d] {
        top: 50%;
        left: -6px;
        transform: translateY(-50%);
        cursor: w-resize;
    }

    .resize-handle.e[b-tsieaaho7d] {
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        cursor: e-resize;
    }

.legend-color[b-tsieaaho7d] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.zones-empty-state[b-tsieaaho7d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    min-height: 400px;
}

.context-menu[b-tsieaaho7d] {
    animation: contextMenuAppear-b-tsieaaho7d 0.2s ease-out;
}

@keyframes contextMenuAppear-b-tsieaaho7d {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

