/* chips for requested docs */
.doc-chip {
    display:inline-flex; align-items:center; gap:.35rem;
    padding:.25rem .5rem; border-radius:999px; font-size:.8rem;
    background: rgba(13,110,253,.08); border:1px solid rgba(13,110,253,.15);
}
.doc-chip i { opacity:.8; }

.form-check-input:checked {
    background-color: #0a4f51;
    border-color: #0a4f51;
}

.form-switch .form-check-input:checked {
    background-color: #0a4f51 !important;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #0a4f51;
    border-color: #0a4f51;
}

.form-check-input[type="radio"]:checked {
    background-color: #0a4f51;
    border-color: #0a4f51;
}

.bg-finovia {
    --phoenix-bg-opacity: 1;
    background-color: #0a4f51 !important;
}

.timeline-section + .timeline-section { margin-top:1rem; }
.timeline-date {
    font-weight:600; font-size:.9rem; color: var(--bs-secondary-color,#6c757d);
    display:flex; align-items:center; gap:.5rem; margin:.5rem 0 .25rem;
}
.timeline-item {
    border:2px solid #dee2e6;
    border-radius:.5rem; padding:.75rem .9rem; display:flex; gap:.9rem;
}
.timeline-item .left {
    width:36px; display:flex; justify-content:center; align-items:flex-start;
}
.timeline-item .left .dot {
    width:10px; height:10px; border-radius:50%;
    background: #0a4f51; box-shadow:0 0 0 4px rgba(13,110,253,.12);
    margin-top:.3rem;
}
.timeline-item .body { flex:1; min-width:0; }
.timeline-item .meta {
    display:flex; gap:.5rem; flex-wrap:wrap; align-items:center;
    color: #6c757d; font-size:.82rem;
}
.timeline-item .docs { display:flex; gap:.4rem; flex-wrap:wrap; margin-top:.35rem; }
.timeline-item .msg {
    margin-top:.4rem; color: #212529; white-space:pre-wrap;
}
.copy-btn {
    border:1px dashed rgba(108,117,125,.35); background:transparent;
    padding:.15rem .45rem; font-size:.75rem; border-radius:.35rem;
}
.empty-state {
    text-align:center; padding:1.25rem; border:1px dashed rgba(108,117,125,.3);
    border-radius:.75rem; color: #6c757d;
}

.toast-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}
.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.toast-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.toast-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

