/* ═══════════════════════════════════════
   DEAD FUNDS TAB
   ═══════════════════════════════════════ */

.db-dead-count {
    padding: 8px 24px;
    font-size: 11px;
    color: var(--slate-500);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.db-dead-firm-name {
    font-weight: 600;
    color: var(--white);
    font-size: 13px;
}

.db-dead-leadership {
    font-size: 12px;
    color: var(--slate-400);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.db-dead-city,
.db-dead-country,
.db-dead-founded,
.db-dead-last-known {
    font-size: 12px;
    color: var(--slate-400);
    white-space: nowrap;
}

/* Column widths for dead funds table */
.db-dead-table th:nth-child(1) { min-width: 180px; }
.db-dead-table th:nth-child(2) { min-width: 90px; }
.db-dead-table th:nth-child(3) { min-width: 160px; }
.db-dead-table th:nth-child(4) { min-width: 80px; }
.db-dead-table th:nth-child(5) { min-width: 80px; }
.db-dead-table th:nth-child(6) { min-width: 70px; }
.db-dead-table th:nth-child(7) { min-width: 80px; }

/* Responsive */
@media (max-width: 1024px) {
    .db-dead-table th:nth-child(1),
    .db-dead-table td:nth-child(1) { position: sticky; left: 0; z-index: 5; background: inherit; }
    .db-dead-table th:nth-child(1) { background: var(--navy-800); }
    .db-dead-table td:nth-child(1) { background: var(--navy-950); }
    .db-dead-table tr:hover td:nth-child(1) { background: var(--navy-900); }
}
