body {
    font-family: Arial;
    background: #f5f5f5;
    background: #5c86f0;
}

.container {
    width: 400px;
    margin: auto;
    background: white;
    padding: 15px;
    border: 2px solid #000;
    position: relative;
    margin-top: 20px;
    
}

.logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 90px;
}
#firma {
    width: 150px;
    height: 80px;
    border: 1px solid black;
    background: white;
    cursor: pointer;
}

h2 {
    text-align: center;
    margin-top: 50px;
}

input, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
}

.row {
    display: flex;
    gap: 5px;
}

.grande {
    height: 120px;
}

canvas {
    border: 1px solid black;
    width: 150px;
    height: 80px;
    cursor: crosshair;
}

.firmas {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.firma-img {
    width: 120px;
}

button {
    margin-top: 10px;
    padding: 8px;
    width: 100%;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: darkgreen;
}

.aviso {
    font-size: 12px;
    margin-top: 10px;
}
* {
    box-sizing: border-box;
}

input, textarea {
    width: 100%;
    max-width: 100%;
}

/* firma más prolija */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 15px;
    width: 95%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
}

#firmaGrande {
    width: 100%;
    height: 250px;
    border: 2px solid black;
    background: white;
}

.botonesFirma {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.botonesFirma button {
    flex: 1;
}
.row {
    display: flex;
    gap: 10px;
}

.campo {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    font-size: 12px;
    margin-bottom: 3px;
}
#infoFecha {
    font-size: 13px;
    margin-top: 5px;
    font-weight: bold;
}
.header {
    text-align: center;
    margin-bottom: 10px;
}

.logo-header {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.header h2 {
    margin-top: 5px;
    font-size: 22px;
    letter-spacing: 1px;
}
@media print {
    body {
        background: white;
    }

    .container {
        width: 80mm;
        margin: 0 auto;
    }
}
#comprobante {
    height: auto; /* Que crezca según el contenido */
    padding-bottom: 20px; /* Dale aire al final para que no se corte */
    background-color: white;
}

.aviso {
    font-size: 10px; /* Un poco más chico para que entre bien */
    margin-top: 15px;
    border-top: 1px solid #ccc;
    padding-top: 5px;
}
/* El contenedor del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    touch-action: none; /* BLOQUEA el scroll del celular mientras firmas */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

/* El cuadro donde se dibuja */
#firmaGrande {
    border: 2px dashed #000;
    background-color: #f9f9f9;
    cursor: crosshair;
    touch-action: none; /* IMPORTANTE: evita que el dedo mueva la página */
    max-width: 100%;
}