/* ============================================================
   product.css
   Estilos específicos de Apudara.
   Mantener aquí estilos que no sean reutilizables por toda la suite -ara.
   ============================================================ */

/* ============================================================
   Intentos creaciÃ³n Apudacta en Justicia
   ============================================================ */
.apud-attempts-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.apud-attempt-box {
    min-width: 150px;
    max-width: 190px;
    border: 1px solid #999;
    padding: 8px 10px;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.2;
    box-sizing: border-box;
}

.apud-attempt-box__status {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.apud-attempt-box__message {
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.apud-attempt-box__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 700;
    font-size: 0.75rem;
}

.apud-attempt--ok {
    background: #dcf8d2;
    border-color: #6abf59;
    color: #256b1f;
}

.apud-attempt--error {
    background: #ffd7d7;
    border-color: #d66;
    color: #7a1c1c;
}

.apud-attempt--warning {
    background: #fff2cc;
    border-color: #d6b656;
    color: #7a5a00;
}

.apud-attempt--cancelled {
    background: #e5e5e5;
    border-color: #999;
    color: #555;
}

.apud-attempt--unknown {
    background: #eef2ff;
    border-color: #8ea0d6;
    color: #2f3e7e;
}
