#bookly-tbs a {
    border-bottom: none;
}
#bookly-tbs .pagination {
    border: none;
}
#bookly-tbs .pagination:before, #bookly-tbs .pagination:after {
    display: none;
}
#bookly-tbs .pagination .next, #bookly-tbs .pagination .next:hover {
    background-color: inherit;
}
#bookly-tbs table.table.table-striped {
    table-layout: inherit;
}
#bookly-tbs ul.bookly-nav-justified {
    margin: 0;
}
#bookly-tbs.bookly-customer-cabinet .modal-content a,
#bookly-tbs.bookly-customer-cabinet .dropdown-menu a {
    text-decoration: unset;
    border: 0;
}
#bookly-tbs.bookly-customer-cabinet form {
    position: relative;
}
#bookly-tbs.bookly-customer-cabinet .dropdown-toggle::after {
    display: none;
}
#bookly-tbs .modal {
    z-index: 99999;
}

.booklySelect2-container {
    z-index: 100000;
}

#bookly-tbs.bookly-customer-cabinet .checkbox,
#bookly-tbs.bookly-customer-cabinet .radio {
    position: initial;
}

/* ── Barra de pesquisa por campos personalizados ──────────────────────────── */
.bcc-search-bar {
    margin-bottom: 18px;
}

.bcc-search-bar__inner {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 14px;
    gap: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: border-color .2s, box-shadow .2s;
}

.bcc-search-bar__inner:focus-within {
    border-color: #6366f1;
    box-shadow: 0 2px 16px rgba(99,102,241,.13);
}

.bcc-search-field {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 8px;
}

.bcc-search-field__icon {
    color: #94a3b8;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color .2s;
}

.bcc-search-field:focus-within .bcc-search-field__icon {
    color: #6366f1;
}

.bcc-search-field__input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 6px 0 !important;
    font-size: 14px !important;
    color: #1e293b !important;
    width: 100% !important;
    line-height: 1.4 !important;
}

.bcc-search-field__input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.bcc-search-divider {
    width: 1px;
    height: 22px;
    background: #e2e8f0;
    margin: 0 12px;
    flex-shrink: 0;
}

.bcc-search-clear {
    background: none;
    border: none;
    padding: 4px 6px;
    margin-left: 4px;
    border-radius: 6px;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.bcc-search-clear:hover {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 576px) {
    .bcc-search-bar__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 12px;
        gap: 4px;
    }
    .bcc-search-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }
    .bcc-search-clear {
        align-self: flex-end;
    }
}
/* ────────────────────────────────────────────────────────────────────────── */