/* style.css v1.6 */
:root {
    --color-tesoros: #626366;
    --color-maestros: #a87800;
    --color-vida: #8c1d18;
}
body { background: #eee; font-family: 'Roboto', Arial, sans-serif; padding-top: 60px; } /* Padding para navbar */

/* Navbar fijo */
.navbar-custom { position: fixed; top: 0; width: 100%; z-index: 1000; background: #333; color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

.hoja-programa {
    background: white;
    max-width: 21.5cm;
    margin: 20px auto;
    padding: 25px 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.section-header { display: flex; align-items: center; color: white; padding: 4px 10px; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; margin-top: 15px; border-radius: 3px; }
.section-icon { height: 18px; margin-right: 8px; filter: brightness(0) invert(1); }
.song-icon { height: 16px; margin-right: 5px; opacity: 0.6; }

.bg-tesoros { background-color: var(--color-tesoros); }
.bg-maestros { background-color: var(--color-maestros); }
.bg-vida { background-color: var(--color-vida); }

.input-clean { border: none; background: transparent; width: 100%; font-weight: bold; color: inherit; }
.input-clean:focus { outline: none; background: #f9f9f9; }
.input-box { border: 1px solid #ccc; padding: 4px 8px; font-size: 0.9rem; width: 100%; border-radius: 2px; }
.input-tall { height: 50px !important; resize: none; display: flex; align-items: center; font-size: 0.8rem; line-height: 1.2; padding: 5px; }

.select-time { font-size: 0.8rem; background-color: #f0f0f0; border: 1px solid #ccc; text-align: center; width: 70px; font-weight: bold; }

/* CAMBIO 1: Selects de asignados más pequeños */
.select-assigned {
    border: none;
    font-weight: bold;
    font-size: 0.85rem; /* Letra normal en pantalla */
    color: #000;
    background: transparent;
}

.row-compact { display: flex; align-items: center; padding: 4px 0; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.row-song { background-color: #fff9f0; border: 1px solid #f0e0c0; padding: 5px; margin: 15px 0; border-radius: 4px; }

/* Botones Iconos */
.btn-icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; border-radius: 5px; margin: 0 2px; }
.btn-add-mini { width: 20px; height: 20px; border-radius: 50%; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-left: auto; }

/* IMPRESIÓN */
@media print {
    @page { size: letter; margin: 0.5cm; }
    body { background: white; padding-top: 0; }
    .navbar-custom, .no-print { display: none !important; }
    .hoja-programa { box-shadow: none; margin: 0; padding: 0; width: 100%; max-width: 100%; }
    
    input, select, textarea { border: none !important; background: transparent !important; resize: none; appearance: none; }
    
    /* CAMBIO 1 (Impresión): Achicar letra de asignados */
    .select-assigned { font-size: 0.75rem !important; } 
    
    .select-time { text-align: right; width: auto; font-style: italic; font-size: 0.7rem; }
}