.incidents-title {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.incidents-meta {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.incidents-meta a {
    color: var(--accent);
    text-decoration: none;
}

.incidents-meta a:hover {
    text-decoration: underline;
}

.incidents-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.incidents-table-wrap {
    overflow-x: auto;
    margin-top: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.incidents-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.incidents-table th,
.incidents-table td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

.incidents-table thead th {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.incidents-table tbody tr:last-child td {
    border-bottom: none;
}

.incidents-table tbody tr:target {
    background: rgba(26, 188, 156, 0.08);
}

.incidents-table a {
    color: var(--accent);
    text-decoration: none;
}

.incidents-table a:hover {
    text-decoration: underline;
}

.incident-date {
    white-space: nowrap;
}

.incident-nhtsa {
    white-space: nowrap;
}

.incident-nhtsa a {
    color: var(--text-light) !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85em;
}

.incident-nhtsa a:hover {
    color: var(--accent) !important;
}

.incident-sources {
    margin: 0;
    padding-left: 1.1rem;
}

.incident-sources li {
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.incident-sources li:last-child {
    margin-bottom: 0;
}


.incidents-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}
