/* TICKET: SELECTOR COMPACTO Y VISTA PREVIA POS58 */
.modal-ticket-fondo.abierto {
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-pedido.modal-seleccion-impresion.modal-ticket-selector {
    width: min(360px, calc(100vw - 32px));
    max-width: 360px;
    max-height: calc(100vh - 32px);
    padding: 12px;
    overflow: auto;
}

.modal-ticket-selector .modal-header {
    margin-bottom: 10px;
}

.modal-ticket-selector .bloque-form {
    padding: 12px;
}

.modal-ticket-selector .form-grid {
    grid-template-columns: 1fr;
}

.modal-ticket-selector input[type="number"] {
    width: 100%;
    padding: 9px 10px;
    font-size: 16px;
}

.modal-ticket-selector .acciones-ticket {
    justify-content: flex-end;
    margin-top: 10px;
}

.modal-ticket-vista {
    width: min(300px, calc(100vw - 24px));
    height: min(760px, calc(100vh - 24px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f4f7fb;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    padding: 10px;
}

.modal-ticket-vista-header {
    position: static;
    flex: 0 0 auto;
    margin-bottom: 8px;
}

.modal-ticket-vista-header h2 {
    max-width: calc(100% - 44px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticket-frame-contenedor {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d7dde8;
    border-radius: 8px;
}

.ticket-frame {
    width: 260px;
    height: 100%;
    border: 0;
    background: #fff;
}

@media (max-width: 520px) {
    .modal-pedido.modal-seleccion-impresion.modal-ticket-selector {
        width: min(340px, calc(100vw - 20px));
    }

    .modal-ticket-vista {
        width: min(290px, calc(100vw - 16px));
        height: calc(100vh - 16px);
    }

    .ticket-frame {
        width: 250px;
    }
}
