/* Karate Instructors Table */

.ki-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
}

.ki-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 15px;
    background: #fff;
}

.ki-table thead {
    background: #333;
    color: #fff;
}

.ki-table th,
.ki-table td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
    text-align: left;
}

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

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

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

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

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

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

    .ki-table {
        font-size: 14px;
    }

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

    .ki-photo {
        max-width: 70px;
    }

    .ki-bio {
        min-width: 180px;
    }

}