/* ============================================
   BUYER SEARCH MODULE — buyer_search.html
   ============================================ */

.result-card .card-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.sort-inline .form-select { min-width: 140px; }

/* Search form */
.buyer-search-form .form-label  { font-weight: 700; color: #101828; }

.buyer-search-form .form-control {
    min-height: 2.95rem;
    border-radius: 12px;
    border-color: #d0d5dd;
}

.buyer-search-form .form-control:focus {
    border-color: #3949ab;
    box-shadow: 0 0 0 0.2rem rgba(57, 73, 171, 0.12);
}

/* Table header */
.table th {
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #667085;
}

/* Court case toggle */
.court-toggle .form-check-input {
    width: 2.4rem;
    height: 1.2rem;
    cursor: pointer;
    background-color: #e4e7ec;
    border-color: #cfd4dc;
}

.court-toggle .form-check-input:checked {
    background-color: #1b3a74;
    border-color: #1b3a74;
}

.court-toggle .form-check-label { font-weight: 600; color: #1d2939; }

/* Table cell truncation */
.table td {
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .table td { white-space: normal; max-width: none; }
}

/* Result table variant */
.result-table th,
.result-table td { padding: 0.85rem 1rem; }

.result-table tbody tr { border-bottom: 1px solid #eef2f6; }
.result-table tbody tr:hover { background: #f5f8ff; }
.result-table thead th { background: #f9fafb; border-bottom: 1px solid #e4e7ec; }

.result-table.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #fefeff;
}
