/* HonestMeter customer review dashboard: status tabs and 10-item pagination. */
.customer-review-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid #dfe7ec;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(7, 27, 47, .06);
}

.customer-review-total {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 13px;
    color: #087250;
    background: #e4f8f0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.customer-review-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}

.customer-review-tab {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 10px 13px;
    color: #4e6170;
    background: #fff;
    border: 1px solid #dfe7ec;
    border-radius: 12px;
    transition: .2s ease;
}

.customer-review-tab:hover {
    color: #071b2f;
    border-color: rgba(0, 182, 122, .48);
    transform: translateY(-2px);
}

.customer-review-tab i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #087250;
    background: #e4f8f0;
    border-radius: 8px;
}

.customer-review-tab span {
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-review-tab strong {
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    padding-inline: 7px;
    color: #526472;
    background: #eef3f6;
    border-radius: 999px;
    font-size: 12px;
}

.customer-review-tab.active {
    color: #fff;
    background: #071b2f;
    border-color: #071b2f;
    box-shadow: 0 10px 25px rgba(7, 27, 47, .18);
}

.customer-review-tab.active i {
    color: #fff;
    background: #00b67a;
}

.customer-review-tab.active strong {
    color: #071b2f;
    background: #fff;
}

.customer-review-pagination .pagination {
    justify-content: center;
    gap: 6px;
}

.customer-review-pagination .page-item {
    margin-right: 0;
}

.customer-review-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 9px 13px;
    color: #284150;
    background: #fff;
    border: 1px solid #dce5ea;
    border-radius: 10px !important;
    box-shadow: 0 5px 16px rgba(7, 27, 47, .05);
}

.customer-review-pagination .page-item.active .page-link,
.customer-review-pagination .page-link:hover {
    color: #fff;
    background: #00a86f;
    border-color: #00a86f;
}

.customer-review-pagination .page-item.disabled .page-link {
    color: #91a0aa;
    background: #f4f7f8;
    border-color: #e4eaee;
    box-shadow: none;
}

.customer-page-direction {
    gap: 8px;
    min-width: 112px !important;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .customer-review-toolbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .customer-review-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-review-pagination .pagination {
        gap: 4px;
    }

    .customer-review-pagination .page-link {
        min-width: 38px;
        min-height: 38px;
        padding: 7px 10px;
    }

    .customer-page-direction {
        min-width: 42px !important;
    }

    .customer-page-direction span {
        display: none;
    }
}
