/* Selector de estación de impresión (navbar) */

.estacion-impresion-nav {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.estacion-impresion-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 34px;
    padding: 0 6px 0 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.estacion-impresion-control:hover,
.estacion-impresion-control:focus-within {
    border-color: rgba(190, 52, 127, 0.35);
    box-shadow: 0 4px 12px rgba(190, 52, 127, 0.12);
}

.estacion-impresion-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    cursor: default;
    user-select: none;
}

.estacion-impresion-icon {
    font-size: 13px;
    color: #888;
    line-height: 1;
}

.estacion-impresion-control:hover .estacion-impresion-icon,
.estacion-impresion-control:focus-within .estacion-impresion-icon {
    color: #BE347F;
}

.estacion-impresion-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.estacion-impresion-select-wrap::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #888;
    pointer-events: none;
    transition: border-top-color 0.2s;
}

.estacion-impresion-control:hover .estacion-impresion-select-wrap::after,
.estacion-impresion-control:focus-within .estacion-impresion-select-wrap::after {
    border-top-color: #BE347F;
}

.estacion-impresion-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 148px;
    max-width: 200px;
    height: 28px;
    padding: 0 28px 0 10px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: #f7f7f8;
    border: 1px solid #ececec;
    border-radius: 999px;
    cursor: pointer;
    outline: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.estacion-impresion-select:hover {
    background: #fff;
    border-color: #e0d0d8;
}

.estacion-impresion-select:focus {
    background: #fff;
    border-color: rgba(190, 52, 127, 0.45);
    box-shadow: 0 0 0 3px rgba(190, 52, 127, 0.12);
    color: #BE347F;
}

/* POS mercado: alineado a la derecha junto al consecutivo */
.estacion-impresion-pos-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
    margin-bottom: 4px;
}

.estacion-impresion-pos-wrap .estacion-impresion-nav {
    margin-right: 0;
}

@media (max-width: 991px) {
    .estacion-impresion-nav {
        width: 100%;
        margin: 8px 0 4px;
        padding: 0 12px;
    }

    .estacion-impresion-control {
        width: 100%;
        justify-content: space-between;
    }

    .estacion-impresion-select {
        flex: 1;
        max-width: none;
    }
}
