body {
    font-family: Arial, sans-serif;
    margin: 20px 35px;
    font-size: 13px;
    color: #000;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    width: 150px;
    object-fit: contain;
}

.info-empresa {
    flex: 1;
    text-align: center;
    line-height: 1.6;
    font-size: 13px;
    padding-right: 150px;
}

.info-empresa strong {
    font-size: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td, th {
    border: 1px solid #000;
    padding: 6px;
    text-align: center;
    vertical-align: middle;
}

input, textarea {
    width: 100%;
    border: none;
    outline: none;
    font-family: Arial;
    font-size: 13px;
    box-sizing: border-box;
    background: transparent;
    text-align: center;
}

input {
    min-height: 24px;
}

textarea {
    resize: none;
    min-height: 26px;
    overflow: hidden;
    text-align: center;
    line-height: 1.4;
}

.texto-largo {
    text-align: left;
    min-height: 36px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.observaciones {
    min-height: 80px;
    text-align: left;
}

.btn-container {
    margin: 40px 0 0 240px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    background: #1d117a;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-danger {
    background: #8b0000;
}

.firmas {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.firma-box {
    width: 45%;
}

.signature-pad {
    display: block;
    width: 100%;
    height: 95px;
    border: 1px solid #000;
    cursor: crosshair;
    touch-action: none;
    background: #fff;
    box-sizing: border-box;
}

.firma-label {
    margin-top: 12px;
    text-align: center;
    border-top: 1px solid #000;
    padding-top: 4px;
    width: 100%;
}

.borrar-firma {
    margin-top: 8px;
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px 12px;
    font-size: 12px;
}

.accion-btn {
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px 8px;
}

@media print {
    .btn-container,
    .col-accion,
    .accion-celda,
    .borrar-firma {
        display: none;
    }
}