.doc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 0 8px;
}

.doc-sheet {
    max-width: 900px;
    margin: 0 auto 60px;
    background: #fff;
    color: #14151a;
    border: 1.5px solid #14151a;
    border-radius: 4px;
    font-family: "Inter", Arial, sans-serif;
    overflow: hidden;
}

.doc-head {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1.5px solid #14151a;
}

.doc-head-title {
    padding: 14px 20px;
    text-align: center;
}

.doc-head-title h1 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.01em;
}

.doc-head-title p {
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: #3a3b42;
}

.doc-head-folio {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-left: 1.5px solid #14151a;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.doc-section-label {
    padding: 7px 14px;
    font-size: 11.5px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1.5px solid #14151a;
    border-top: 1.5px solid #14151a;
    background: #f4f5f7;
}

.doc-section-label:first-child { border-top: none; }

.doc-grid {
    display: grid;
    border-bottom: 1.5px solid #14151a;
}

.doc-cell {
    padding: 8px 14px;
    border-right: 1px solid #b9bac0;
    border-bottom: 1px solid #b9bac0;
    min-width: 0;
}

.doc-grid > .doc-cell:last-child { border-right: none; }

.doc-cell .lbl {
    display: block;
    font-size: 9.5px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b6d76;
    margin-bottom: 3px;
}

.doc-cell .val {
    display: block;
    font-size: 13px;
    font-weight: 650;
    word-break: break-word;
}

.doc-cell .val.result-aprobado { color: #1e6b3f; }
.doc-cell .val.result-denegado { color: #b3261e; }

.doc-foot {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.doc-foot-legal {
    padding: 14px 16px;
    font-size: 10.5px;
    line-height: 1.5;
    color: #3a3b42;
    border-right: 1.5px solid #14151a;
}

.doc-foot-tech {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doc-foot-tech .lbl {
    font-size: 9.5px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b6d76;
    margin-bottom: 3px;
}

.doc-foot-tech .val {
    font-size: 12.5px;
    font-weight: 650;
}

.doc-signature {
    margin-top: 22px;
    border-top: 1px solid #14151a;
    padding-top: 6px;
    font-size: 10px;
    color: #6b6d76;
    text-align: center;
}

@media print {
    body { background: #fff !important; }
    .doc-toolbar { display: none !important; }
    .doc-sheet { border-color: #000; box-shadow: none; margin: 0 auto; }
    .blob { display: none !important; }
    @page { margin: 12mm; }
}
