/* Ayuda - Datáfono (AY-073) — estilos específicos */

.dtf-tabla-pasos { width: 100%; border-collapse: collapse; margin: 12px 0; }
.dtf-tabla-pasos th, .dtf-tabla-pasos td {
    border: 1px solid var(--fp-flat-border);
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}
.dtf-tabla-pasos th { background: var(--fp-flat-surface); font-weight: 700; }
.dtf-tabla-pasos code { background: rgba(0,71,171,0.08); padding: 2px 6px; border-radius: 3px; }

.dtf-callout { padding: 12px 16px; border-left: 4px solid #0047AB; background: #eff6ff; margin: 12px 0; }
.dtf-callout.warn { border-color: #f59e0b; background: #fef3c7; }
.dtf-callout.danger { border-color: #ef4444; background: #fee2e2; }
.dtf-callout.success { border-color: #10b981; background: #d1fae5; }

.dtf-flow {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    margin: 12px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}
.dtf-flow .box {
    border: 1px solid var(--fp-flat-border);
    background: var(--fp-flat-surface);
    padding: 6px 10px;
    text-align: center;
    border-radius: 4px;
}
.dtf-flow .arrow { color: #0047AB; font-weight: 700; }

.dtf-cmd {
    background: #0f172a;
    color: #d1fae5;
    padding: 12px 14px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    margin: 8px 0;
}

.dtf-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #0047AB;
    color: #fff;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}
.dtf-tag.green  { background: #10b981; }
.dtf-tag.amber  { background: #f59e0b; color: #000; }
.dtf-tag.red    { background: #ef4444; }
.dtf-tag.gray   { background: #64748b; }
