/* Instructors Directory Table (integrated from Karate Instructors plugin) */
/* Table styling matches the Public Videos Table (assets/css/videos-table.css) */

.adms-staff-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.adms-staff-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
    font-family: inherit;
}

.adms-staff-table thead th {
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.adms-staff-table tbody td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.adms-staff-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.adms-staff-table tbody tr:hover {
    background: #f1f1f1;
}

.adms-staff-photo-cell {
    width: 120px;
    text-align: center;
}

.adms-staff-photo {
    max-width: 100px;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

.adms-staff-bio {
    min-width: 250px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {

    .adms-staff-table {
        font-size: 14px;
    }

    .adms-staff-table th,
    .adms-staff-table td {
        padding: 8px;
    }

    .adms-staff-photo {
        max-width: 70px;
    }

    .adms-staff-bio {
        min-width: 180px;
    }

}
