/* ... (Mantén los estilos anteriores del bus, asientos y contenedor) ... */
.srb-container { font-family: 'Segoe UI', sans-serif; max-width: 600px; margin: 0 auto; }
.srb-controls { background: #f4f6f7; padding: 15px; border-radius: 8px; margin-bottom: 20px;}
.srb-controls select, .srb-controls input { width: 100%; padding: 8px; margin-bottom: 5px; box-sizing: border-box; }
.bus-layout { background: #fff; padding: 40px 20px; border-radius: 30px; border: 5px solid #2c3e50; max-width: 340px; margin: 0 auto; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.seats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px 6px; }
.seat { height: 42px; background: #fff; border: 2px solid #e67e22; border-radius: 6px 6px 10px 10px; display: flex; align-items: center; justify-content: center; font-weight: bold; cursor: pointer; position: relative; }
.seat::after { content: ''; position: absolute; bottom: 4px; left: 10%; width: 80%; height: 8px; background: #c0392b; opacity: 0.8; }
.seat span { position: relative; z-index: 2; }
.seat.pagado { background: #c0392b; border-color: #922b21; color: #fff; } .seat.pagado::after { display: none; }
.seat.pendiente { background: #f1c40f; border-color: #f39c12; color: #fff; } .seat.pendiente::after { display: none; }
.cell-aisle { pointer-events: none; }
.cell-service-block { grid-column: span 2; background: #bdc3c7; border: 2px dashed #95a5a6; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 10px; font-weight: bold; }

/* ESTILOS NUEVOS v4.0 */

/* Botón Reporte */
.btn-reporte { background: #34495e; color: white; border: none; padding: 10px; border-radius: 4px; cursor: pointer; width: 100%; margin-top: 10px; }
.btn-reporte:hover { background: #2c3e50; }

/* Tabla de Reporte */
.srb-report-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 14px; }
.srb-report-table th { background: #ecf0f1; padding: 10px; border: 1px solid #bdc3c7; text-align: left; }
.srb-report-table td { padding: 8px; border: 1px solid #bdc3c7; }
.srb-report-table tr:nth-child(even) { background: #f9f9f9; }

/* Modales */
.srb-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); align-items: center; justify-content: center; }
.srb-modal-content { background-color: #fff; padding: 30px; border-radius: 10px; width: 300px; position: relative; }
.srb-content-large { width: 600px; max-height: 80vh; overflow-y: auto; } /* Para el reporte */
.srb-modal input, .srb-modal select { width: 100%; margin-bottom: 10px; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
.srb-modal button { padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; color: white; background: #27ae60; font-weight: bold; }

/* Estilos de Impresión: Ocultar todo menos la tabla */
@media print {
    body * { visibility: hidden; }
    #srb-modal-reporte, #srb-modal-reporte * { visibility: visible; }
    #srb-modal-reporte { position: absolute; left: 0; top: 0; background: white; width: 100%; height: 100%; display: block !important; }
    .close-modal-reporte, button { display: none !important; } /* Ocultar botones al imprimir */
}