/* ================================
   Blacklisted Assessors Page Styles
   ================================ */

.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.section-intro-text {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #fff8f0;
    border-left: 4px solid #e67e22;
    border-radius: 0 6px 6px 0;
    font-style: italic;
}

/* Responsive table wrapper */
.table-responsive-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    background: #fff;
}

.data-table thead tr {
    background: #1a3a5c;
    color: #fff;
}

.data-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid #e8f4fd;
    transition: background 0.2s;
}

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

.data-table tbody tr:hover {
    background: #f0f8ff;
}

.data-table tbody tr:nth-child(even) {
    background: #f8fbfe;
}

.data-table tbody tr:nth-child(even):hover {
    background: #e8f4fd;
}

.data-table tbody td {
    padding: 13px 18px;
    color: #333;
    vertical-align: top;
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 40px 0;
    }

    .data-table thead th,
    .data-table tbody td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}