/*
 *==============================================================================
 * PAISASEED SHARED BLOCK STYLES
 *==============================================================================
 */

/*
 *==============================================================================
 * RESPONSIVE TABLE CONTAINER
 *==============================================================================
 */

.wp-block-table {
    width: 100%;
    max-width: 100%;
    margin-block: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 1px solid #d9e3de;
    border-radius: 6px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
}

/*
 *==============================================================================
 * TABLE STRUCTURE
 *==============================================================================
 */

.wp-block-table table,
.wp-block-table table.has-fixed-layout {
    width: 100%;
    min-width: 680px;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.wp-block-table th,
.wp-block-table td {
    padding: 12px 14px;
    border: 0;
    border-right: 1px solid #e2e9e5;
    border-bottom: 1px solid #e2e9e5;
    color: #23312a;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.wp-block-table th:last-child,
.wp-block-table td:last-child {
    border-right: 0;
}

.wp-block-table thead th {
    border-bottom: 2px solid #c9d8d0;
    background: #f0f7f3;
    color: #17251e;
    font-weight: 700;
}

.wp-block-table tbody tr:last-child td {
    border-bottom: 0;
}

/*
 *==============================================================================
 * MOBILE TABLE DENSITY
 *==============================================================================
 */

@media (max-width: 767px) {
    .wp-block-table {
        margin-block: 20px;
    }

    .wp-block-table table,
    .wp-block-table table.has-fixed-layout {
        min-width: 620px;
        font-size: 14px;
    }

    .wp-block-table th,
    .wp-block-table td {
        padding: 10px 12px;
    }
}
