/* Foreclosures page */

.fc-intro {
    color: var(--text-muted);
    font-size: var(--fs-13);
    line-height: 1.55;
    max-width: 720px;
    margin: 0 0 var(--sp-4);
}

.fc-filters {
    display: flex;
    gap: 10px;
    margin: 18px 0 12px;
    flex-wrap: wrap;
}

.fc-filters select,
.fc-filters input {
    padding: 8px 10px;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-md);
    font-size: var(--fs-13);
    background: var(--surface);
    outline: none;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fc-filters select:focus,
.fc-filters input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-ring);
}

.fc-filters input {
    flex: 1;
    min-width: 220px;
}

/* Horizontal scroll on narrow screens — mirrors #sales-table-wrap so the
   Defendant column stays reachable at mobile widths (~390px). */
#fc-table {
    overflow-x: auto;
    border-radius: var(--r-lg);
}
.fc-table th,
.fc-table td {
    white-space: nowrap;
}

.fc-table .fc-date {
    white-space: nowrap;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.fc-table .fc-plaintiff {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}
