* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #f5f5f5;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 15px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

h2, h3 {
    margin-top: 0;
    text-align: center;
}

input[type=text] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #2c7be5;
    color: white;
    border: none;
    border-radius: 6px;
}

a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #2c7be5;
    text-decoration: none;
}

.registro {
    font-size: 14px;
    line-height: 1.5;
}

.input-cedula {
    width: 100%;
    max-width: 360px;        /* 👈 evita que se haga gigante en PC */
    margin: auto;
    display: block;

    font-size: clamp(32px, 10vw, 56px);
    padding: 22px;
    text-align: center;
    
    OPCIONAL PRO+ (si quieres)

 /* Si quieres que solo en celular sea grande y en PC normal: */

@media (max-width: 600px) {
    .input-cedula {
        font-size: clamp(36px, 7vw, 64px);
    }
}
}

.registro {
    font-size: 1.9em;   /* 👈 casi el doble */
    line-height: 1.6;
}

.header-fijo {
    position: sticky;
    top: 0;
    background: #f5f5f5;
    padding: 12px;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    z-index: 100;
    border-bottom: 2px solid #ddd;
}

.nombre-operario {
    display: block;
    font-size: 0.9em;
    font-weight: normal;
    margin-top: 4px;
}
.container {
    padding-top: 10px;
}

.btn-reporte {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background: #2c7be5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
}

.header-fijo {
    padding-bottom: 10px;
}

.reporte-diario {
    font-size: 1.9em;   /* 👈 casi el doble */
    line-height: 1.6;
}


.tabla-reporte {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.tabla-reporte th,
.tabla-reporte td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

.tabla-reporte th {
    background: #2c7be5;
    color: white;
}

.titulo-fecha {
    text-align: center;
    margin: 15px 0 8px;
    font-size: 1.6em;
}

.total-dia {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    background: #e8f1ff;
    padding: 10px;
    border: 2px solid #2c7be5;
    margin-bottom: 20px;
    
    
    .titulo-reporte {
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
}

.subtitulo-reporte {
    font-size: 0.8em;
    font-weight: normal;
}

}