/* Importar fuentes Casa Lumbre */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Variables de color Casa Lumbre */
:root {
    --charcoal: #2D2926;
    --taupe: #98684D;
    --terracota: #8E4919;
    --cream: #EDEBE0;
    --linen: #DBD8D1;
    --grey: #53565A;
}

/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(152, 104, 77, 0.03) 10px, rgba(152, 104, 77, 0.03) 20px);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

.screen {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none !important;
}

/* Container */
/* ============================================
   CONTAINERS - DESKTOP FIRST
   ============================================ */

.container {
    max-width: 1400px;
    width: 96%;
    margin: 0 auto;
    padding: 24px;
}

/* Container para evaluaciones - USA TODO EL ANCHO */
.evaluacion-container {
    max-width: 98%;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
}

/* Card también usa más espacio */
.card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Tabla wrapper para scroll horizontal solo en móvil */
.tabla-wrapper {
    width: 100%;
    overflow-x: visible; /* Desktop: NO scroll */
}

/* MOBILE: Scroll horizontal */
@media (max-width: 768px) {
    .tabla-wrapper {
        overflow-x: auto;
    }
    
    .evaluacion-container {
        width: 100%;
        padding: 12px;
    }
    
    .card {
        padding: 16px;
    }
}

/* Navbar */
.navbar {
    background: var(--charcoal);
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(45, 41, 38, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.navbar h2 {
    color: var(--cream);
    font-size: 28px;
    font-weight: 600;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(45, 41, 38, 0.12);
    max-width: 500px;
    margin: 50px auto;
    border: 1px solid var(--linen);
}

.card h1 {
    color: var(--charcoal);
    margin-bottom: 12px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}

.card h2 {
    color: var(--charcoal);
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
}

.subtitle {
    color: var(--grey);
    text-align: center;
    margin-bottom: 32px;
    font-size: 15px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--linen);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
    color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--taupe);
    box-shadow: 0 0 0 3px rgba(152, 104, 77, 0.1);
}

textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--taupe);
    color: white;
    width: 100%;
    box-shadow: 0 4px 12px rgba(152, 104, 77, 0.25);
}

.btn-primary:hover {
    background: var(--terracota);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 73, 25, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--grey);
    color: white;
    box-shadow: 0 2px 8px rgba(83, 86, 90, 0.2);
}

.btn-secondary:hover {
    background: var(--charcoal);
    transform: translateY(-1px);
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--grey);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-close:hover {
    background: var(--linen);
    color: var(--charcoal);
}

/* ============================================
   BOTÓN MICROSOFT - Estilo oficial
   ============================================ */

.btn-microsoft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ffffff;
    color: #5E5E5E;
    border: 1px solid #8C8C8C;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 100%;
    max-width: 350px;
}

.btn-microsoft:hover {
    background: #f3f3f3;
    border-color: #5E5E5E;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-microsoft:active {
    background: #e8e8e8;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ============================================
   LOGIN CARD
   ============================================ */

.login-card {
    max-width: 500px;
    margin: 60px auto;
    text-align: center;
    padding: 48px;
}

.login-card h1 {
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.login-card .subtitle {
    color: var(--grey);
    font-size: 16px;
    margin-bottom: 32px;
}

.login-content {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-text {
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.6;
}

.info-text {
    margin-top: 40px;
    padding: 24px;
    background: var(--cream);
    border-radius: 8px;
    text-align: left;
    width: 100%;
}

.info-text p {
    color: var(--charcoal);
    margin-bottom: 12px;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-text li {
    padding: 8px 0;
    color: var(--grey);
    position: relative;
    padding-left: 24px;
}

.info-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-weight: bold;
}

/* Alerts */
.error, .success {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
}

.error {
    background: #FEE;
    color: #C00;
    border: 1px solid #FCC;
}

.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

/* Dashboard */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-header h3 {
    color: var(--charcoal);
    font-size: 32px;
    font-weight: 600;
}

/* KPIs Grid */
.kpis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.kpi-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(45, 41, 38, 0.08);
    transition: all 0.3s;
    border: 1px solid var(--linen);
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(45, 41, 38, 0.15);
    border-color: var(--taupe);
}

.kpi-card h4 {
    color: var(--charcoal);
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
}

.kpi-card .meta {
    color: var(--grey);
    font-size: 13px;
    margin-bottom: 6px;
}

.kpi-card .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.3px;
}

.badge-new {
    background: var(--taupe);
    color: white;
}

.badge-edited {
    background: var(--terracota);
    color: white;
}

.kpi-card button {
    margin-top: 16px;
    width: 100%;
}

/* Historial */
#historialSection {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--linen);
}

#historialSection h3 {
    color: var(--charcoal);
    margin-bottom: 24px;
    font-size: 24px;
}

.historial-item {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid var(--taupe);
}

.historial-item .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--linen);
}

.historial-item .user {
    color: var(--taupe);
    font-weight: 600;
    font-size: 15px;
}

.historial-item .date {
    color: var(--grey);
    font-size: 13px;
}

.cambio {
    margin: 12px 0;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.cambio-field {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-size: 14px;
}

.cambio-values {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.valor-tag {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
}

.valor-anterior {
    background: #FEE;
    color: #C00;
    border: 1px solid #FCC;
}

.valor-nuevo {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 41, 38, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(45, 41, 38, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 2px solid var(--linen);
    background: var(--cream);
}

.modal-header h2 {
    font-size: 24px;
    color: var(--charcoal);
}

.modal-body {
    padding: 28px;
}

.respuesta-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--linen);
}

.respuesta-item:last-child {
    border-bottom: none;
}

.respuesta-label {
    color: var(--taupe);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.respuesta-value {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--grey);
}

.loading-spinner {
    border: 4px solid var(--linen);
    border-top: 4px solid var(--taupe);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    background: white;
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(45, 41, 38, 0.08);
    border: 1px solid var(--linen);
}

.empty-state h3 {
    color: var(--grey);
    margin-bottom: 12px;
    font-size: 22px;
}

.empty-state p {
    color: var(--grey);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .card {
        margin: 20px auto;
        padding: 28px 24px;
    }
    
    .navbar {
        padding: 16px 20px;
    }
    
    .navbar h2 {
        font-size: 22px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .dashboard-header h3 {
        font-size: 26px;
    }
    
    .kpis-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .area-row {
        flex-direction: column;
    }
}

/* Áreas dinámicas */
.area-item {
    background: white;
    border: 2px solid var(--linen);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.area-item:hover {
    border-color: var(--taupe);
    box-shadow: 0 4px 12px rgba(152, 104, 77, 0.15);
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--linen);
}

.area-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--taupe);
}

.btn-remove-area {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-remove-area:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.area-content {
    margin-top: 16px;
}

/* Tabla de áreas en modal */
.areas-table {
    margin-top: 16px;
}

.area-row {
    display: flex;
    gap: 20px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--cream);
    border-radius: 6px;
    border-left: 4px solid var(--taupe);
}

.area-cell {
    flex: 1;
}

.area-name {
    min-width: 200px;
    color: var(--charcoal);
    font-weight: 500;
}

.area-objetivos {
    color: var(--grey);
    line-height: 1.6;
}

.area-objetivos strong {
    color: var(--charcoal);
}

/* Animaciones adicionales */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.pulse-slow {
    animation: pulse 3s infinite;
}

/* Header del formulario */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-header h2 {
    margin: 0;
}

/* Badges de estado */
.estado-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.estado-borrador { background: #98684D; }
.estado-definido { background: #8E4919; }
.estado-revision1 { background: #6d4c41; }
.estado-revision2 { background: #5d4037; }
.estado-revision3 { background: #4e342e; }
.estado-cerrado { background: #53565A; }

/* Info de evaluación */
.eval-info {
    background: var(--cream);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid var(--taupe);
}

.info-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-row span {
    font-size: 14px;
    color: var(--charcoal);
}

/* Tabla de evaluación */
.tabla-container {
    overflow-x: auto;
    margin-top: 16px;
    border-radius: 8px;
    border: 2px solid var(--linen);
}

.tabla-evaluacion {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tabla-evaluacion thead {
    background: var(--charcoal);
    color: white;
}

.tabla-evaluacion th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 2px solid var(--taupe);
}

.tabla-evaluacion tbody tr {
    border-bottom: 1px solid var(--linen);
    transition: background 0.2s;
}

.tabla-evaluacion tbody tr:hover {
    background: var(--cream);
}

.tabla-evaluacion td {
    padding: 12px;
}

.tabla-evaluacion input[type="text"],
.tabla-evaluacion input[type="number"],
.tabla-evaluacion textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--linen);
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.tabla-evaluacion input:focus,
.tabla-evaluacion textarea:focus {
    outline: none;
    border-color: var(--taupe);
    box-shadow: 0 0 0 2px rgba(152, 104, 77, 0.1);
}

.tabla-evaluacion input:disabled,
.tabla-evaluacion textarea:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.tabla-evaluacion input[type="number"] {
    text-align: center;
}

.btn-remove-row {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove-row:hover {
    background: #c82333;
}

/* Botones del formulario */
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 150px;
}

/* Grid de evaluaciones */
.evaluaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Modal de firmas */
.firma-estado {
    background: var(--cream);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid var(--taupe);
}

.firma-estado h4 {
    margin: 0 0 12px 0;
    color: var(--charcoal);
    font-size: 16px;
}

.firma-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.firma-row span {
    font-size: 14px;
    color: var(--grey);
}

/* Select de registro */
select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--linen);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    background: white;
    color: var(--charcoal);
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--taupe);
    box-shadow: 0 0 0 3px rgba(152, 104, 77, 0.1);
}

/* Responsive adicional */
@media (max-width: 1024px) {
    .tabla-container {
        overflow-x: scroll;
    }
    
    .tabla-evaluacion {
        min-width: 900px;
    }
    
    .form-buttons .btn {
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .info-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons .btn {
        width: 100%;
    }
}

/* ============ TABLA RESPONSIVE ============ */

/* RESPONSIVE - Tablets */
@media (max-width: 1024px) {
    .tabla-evaluacion {
        min-width: 800px;
        font-size: 12px;
    }
    
    .tabla-evaluacion th,
    .tabla-evaluacion td {
        padding: 10px 8px;
    }
    
    .tabla-evaluacion input,
    .tabla-evaluacion textarea {
        padding: 8px;
        font-size: 12px;
    }
    
    .container {
        padding: 16px;
    }
}

/* RESPONSIVE - Móviles */
@media (max-width: 768px) {
    .tabla-container {
        border: none;
        overflow-x: visible;
    }
    
    .tabla-evaluacion {
        min-width: 0;
        border: none;
    }
    
    /* Ocultar thead */
    .tabla-evaluacion thead {
        display: none;
    }
    
    /* Convertir filas en cards */
    .tabla-evaluacion tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid var(--cream);
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 16px;
        position: relative;
    }
    
    .tabla-evaluacion tbody tr:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    
    .tabla-evaluacion td {
        display: block;
        border: none;
        padding: 0;
        margin-bottom: 16px;
    }
    
    .tabla-evaluacion td:last-child {
        margin-bottom: 0;
    }
    
    /* Agregar etiquetas antes de cada campo */
    .tabla-evaluacion td:nth-child(1)::before {
        content: "Área de Efectividad";
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    .tabla-evaluacion td:nth-child(2)::before {
        content: "Objetivos";
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    .tabla-evaluacion td:nth-child(3)::before {
        content: "Resultados";
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    .tabla-evaluacion td:nth-child(4)::before {
        content: "% Avance";
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    .tabla-evaluacion td:nth-child(5)::before {
        content: "Notas";
        display: block;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 6px;
        font-size: 13px;
    }
    
    /* Botón eliminar en la esquina */
    .tabla-evaluacion td:nth-child(6) {
        position: absolute;
        top: 16px;
        right: 16px;
        margin: 0;
    }
    
    .tabla-evaluacion textarea {
        min-height: 80px;
    }
    
    /* Ajustar botón agregar fila */
    #addRowBtn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
    
    /* Formulario responsive */
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .eval-info .info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Botones en columna */
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons .btn {
        width: 100%;
        margin: 6px 0;
    }
    
    /* Dashboard responsive */
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .dashboard-header button {
        width: 100%;
    }
    
    .evaluaciones-grid {
        grid-template-columns: 1fr;
    }
    
    /* Navbar responsive */
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .navbar h2 {
        font-size: 18px;
    }
}

/* RESPONSIVE - Móviles pequeños */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 12px;
    }
    
    .card {
        padding: 16px;
    }
    
    .tabla-evaluacion tbody tr {
        padding: 12px;
    }
    
    .tabla-evaluacion input,
    .tabla-evaluacion textarea {
        font-size: 14px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .form-buttons,
    #addRowBtn,
    .btn-remove-row,
    #backBtn {
        display: none !important;
    }
    
    .tabla-evaluacion input,
    .tabla-evaluacion textarea {
        border: none;
        background: none;
        padding: 4px;
    }
}
