/* Filters, desktop board, mobile board and mobile filter sheet. */
.ftb-filters {
    position: sticky;
    top: 20px;
    width: 316px;
    min-width: 316px;
    direction: rtl;
    background: #fff;
    border: 1px solid #e4edf3;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 46px rgba(8, 59, 99, .11)
}

.ftb-filters h2 {
    margin: 0 0 18px;
    color: #083b63;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2
}

.ftb-search {
    position: relative;
    margin-bottom: 22px
}

.ftb-search input, .ftb-coach {
    width: 100%;
    height: 48px;
    border: 1px solid #d8e5ef;
    border-radius: 14px;
    padding: 0 14px;
    background: #f7f9fc;
    color: #063b5c;
    font-size: 15px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease
}

.ftb-search input::placeholder, .ftb-coach::placeholder {
    color: #91a1af;
    opacity: 1
}

.ftb-search input:hover, .ftb-coach:hover {
    border-color: #b8cbd9;
    background: #fff
}

.ftb-search input:focus, .ftb-coach:focus {
    border-color: #ef4b78;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(239, 75, 120, .13)
}

.ftb-coach {
    padding: 0 14px
}

.ftb-group {
    margin: 0;
    padding: 18px 0;
    border-top: 1px solid #edf2f6
}

.ftb-group h3 {
    margin: 0 0 12px;
    color: #083b63;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25
}

.ftb-filter-subheading {
    margin: 12px 0 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em
}

.ftb-filter-subheading:first-of-type {
    margin-top: 0
}

.ftb-group label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 34px;
    color: #34495e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    transition: color .18s ease
}

.ftb-group label:hover {
    color: #ef4b78
}

.ftb-group input[type=checkbox] {
    appearance: none;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 0;
    border: 1px solid #c9d8e3;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease
}

.ftb-group label:hover input[type=checkbox] {
    border-color: #ef4b78
}

.ftb-group input[type=checkbox]:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(239, 75, 120, .18)
}

.ftb-group input[type=checkbox]:checked {
    border-color: #ef4b78;
    background: #ef4b78;
    box-shadow: 0 5px 12px rgba(239, 75, 120, .22)
}

.ftb-group input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    margin: 1px auto 0;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.ftb-group label:has(input[type=checkbox]:checked) {
    color: #063b5c;
    font-weight: 700
}

.ftb-filter-empty-note {
    margin: 4px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.35
}

.ftb-time-range {
    --ftb-time-range-start: 0%;
    --ftb-time-range-end: 100%;
    direction: ltr
}

.ftb-time-range-value {
    display: block;
    margin-bottom: 12px;
    color: #063b5c;
    font-size: 15px;
    font-weight: 800;
    text-align: center
}

.ftb-time-range-control {
    position: relative;
    height: 26px;
    margin: 0 8px
}

.ftb-time-range-track {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(to right, #d8e5ef 0, #d8e5ef var(--ftb-time-range-start), #ef4b78 var(--ftb-time-range-start), #ef4b78 var(--ftb-time-range-end), #d8e5ef var(--ftb-time-range-end), #d8e5ef 100%);
    transform: translateY(-50%)
}

.ftb-time-range-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 26px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none
}

.ftb-time-range-input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent
}

.ftb-time-range-input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -7px;
    appearance: none;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ef4b78;
    box-shadow: 0 2px 8px rgba(214, 60, 103, .38);
    cursor: pointer;
    pointer-events: auto
}

.ftb-time-range-input::-moz-range-track {
    height: 6px;
    background: transparent
}

.ftb-time-range-input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ef4b78;
    box-shadow: 0 2px 8px rgba(214, 60, 103, .38);
    cursor: pointer;
    pointer-events: auto
}

.ftb-time-range-input:focus-visible {
    outline: 0
}

.ftb-time-range-input:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(239, 75, 120, .2), 0 2px 8px rgba(214, 60, 103, .38)
}

.ftb-time-range-input:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(239, 75, 120, .2), 0 2px 8px rgba(214, 60, 103, .38)
}

.ftb-board-wrap {
    width: 100%;
    min-width: 0;
    direction: rtl;
    overflow-x: auto;
    padding: 18px;
    border-radius: 24px;
    background: #f4f8fb;
    box-shadow: 0 20px 52px rgba(8, 59, 99, .12)
}

.ftb-board {
    width: 100%;
    min-width: 1040px;
    display: grid;
    grid-template-columns:repeat(7, minmax(130px, 1fr)) 130px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(8, 59, 99, .08);
    transition: .25s
}

.ftb-head {
    min-width: 130px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(135deg, #ef4b78 0%, #d63c67 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-left: 1px solid rgba(255, 255, 255, .28)
}

.ftb-type-head {
    border-top-right-radius: 20px
}

.ftb-board .ftb-head:nth-child(8) {
    border-top-left-radius: 20px
}

.ftb-type, .ftb-cell {
    min-height: 190px;
    max-height: 3000px;
    min-width: 0;
    overflow: hidden;
    border-left: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
    background: #fff;
    opacity: 1;
    transition: max-height .3s ease, min-height .3s ease, padding-top .3s ease, padding-bottom .3s ease, opacity .25s ease, border-color .25s ease
}

.ftb-type.is-row-hiding, .ftb-cell.is-row-hiding {
    min-height: 0 !important;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    border-color: transparent;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.ftb-type.is-row-hidden, .ftb-cell.is-row-hidden {
    display: none !important
}

.ftb-type.ftb-alt, .ftb-cell.ftb-alt {
    background: #f8fbfd
}

.ftb-cell {
    padding: 10px
}

.ftb-type {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #fff;
    color: #083b63;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    border-right: 1px solid #edf1f5
}

.ftb-type-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef6fb;
    color: #ef4b78;
    flex: 0 0 auto
}

.ftb-type-icon svg {
    width: 20px;
    height: 20px;
    display: block
}

.ftb-card, .tb-board-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 8px 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    text-align: right;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, box-shadow .2s ease, border-color .2s ease
}

.tb-board-card.is-hiding {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.98);
    pointer-events: none
}

.tb-board-card.is-hidden {
    display: none !important
}

.ftb-card:hover:not(.is-hiding), .tb-board-card:hover:not(.is-hiding) {
    transform: translateY(-3px);
    border-color: #f8c7d6;
    box-shadow: 0 16px 38px rgba(8, 59, 99, .14)
}

.ftb-card.ftb-with-img {
    padding-top: 0
}

.tb-board-card * {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere
}

.ftb-card strong, .tb-board-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin: 8px 0 5px;
    color: #083b63;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: right
}

.ftb-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin: 4px 0;
    font-size: 12px;
    line-height: 1.35
}

.tb-board-card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px !important;
    line-height: 1.35 !important
}

.ftb-card-category, .tb-board-card-label {
    display: block;
    max-width: 100%;
    font-size: 11px !important;
    line-height: 1.25 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: normal;
    overflow-wrap: normal
}

.tb-board-card-business {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    margin: 6px 0 4px;
    direction: rtl
}

.tb-board-card-business img {
    width: 26px;
    height: 26px;
    min-width: 26px;
    max-width: 26px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef6fb;
    border: 1px solid #fff;
    box-shadow: 0 3px 8px rgba(8, 59, 99, .14)
}

.tb-board-card-business .tb-board-card-label {
    min-width: 0
}

.ftb-card-category {
    display: inline-block !important;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eef6fb;
    color: #003b5c;
    font-weight: 800
}

.tb-board-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0
}

.tb-board-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef6fb;
    color: #083b63;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.tb-board-status.tb-status-approved {
    background: #e8f7ee;
    color: #1d7f46
}

.tb-board-status.tb-status-pending {
    background: #fff2dd;
    color: #b7791f
}

.tb-board-status.tb-status-rejected {
    background: #fdecef;
    color: #b42343
}

.ftb-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    margin: 10px 0 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4b78, #d63c67);
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 20px rgba(214, 60, 103, .22);
    transition: transform .18s ease, box-shadow .18s ease
}

.ftb-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(214, 60, 103, .32)
}

.ftb-img {
    width: 100%;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef6fb, #f8fbfd)
}

.ftb-img img, .ftb-img video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ftb-img-business_avatar {
    background: linear-gradient(135deg, #eef6fb 0%, #fff2f5 100%)
}

.ftb-img-business_avatar .tb-card-header-avatar {
    width: 74px;
    height: 74px;
    border: 4px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(8, 59, 99, .16)
}

.ftb-pool {
    background-image: linear-gradient(135deg, #0d8dc6, #b9eef8)
}

.ftb-sea {
    background-image: linear-gradient(135deg, #82bccc, #f3f1e7)
}

.ftb-kettle {
    background-image: radial-gradient(circle at 50% 60%, #111 0 22px, #333 23px 34px, transparent 35px), linear-gradient(135deg, #141414, #d8d8d8)
}

.ftb-yoga {
    background-image: radial-gradient(circle at 50% 28%, #a36a48 0 10px, transparent 11px), linear-gradient(135deg, #8ec8e5, #fff2df)
}

.ftb-bike {
    background-image: radial-gradient(circle at 30% 70%, transparent 0 15px, #111 16px 19px, transparent 20px), radial-gradient(circle at 70% 70%, transparent 0 15px, #111 16px 19px, transparent 20px), linear-gradient(135deg, #396c41, #d9e4d0)
}

.ftb-empty-board {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 34px;
    text-align: center;
    color: #003b5c;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.ftb-empty-week, .ftb-empty-filter {
    grid-column: 1/-1;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #083b63;
    font-size: 20px;
    font-weight: 800;
    border-bottom: 1px solid #edf1f5
}

.ftb-empty-filter[hidden] {
    display: none
}

.ftb-board.ftb-filter-empty .ftb-type, .ftb-board.ftb-filter-empty .ftb-cell {
    display: none
}

.ftb-mobile-shell, .ftb-mobile-filter-sheet {
    display: none
}

@media (max-width: 1180px) {
    .ftb-layout {
        grid-template-columns:1fr
    }

    .ftb-filters {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none
    }

    .ftb-board-wrap {
        overflow-x: auto
    }

    .ftb-board {
        min-width: 1040px
    }
}

@media (max-width: 700px) {
    .ftb-page {
        padding: 22px 0 36px
    }

    .ftb-topbar {
        margin-left: -14px;
        margin-right: -14px;
        padding: 0 14px
    }

    .ftb-brand {
        font-size: 18px
    }

    .ftb-title {
        width: calc(100% - 28px);
        font-size: 26px
    }

    .ftb-layout {
        width: calc(100% - 28px);
        gap: 14px
    }

    .ftb-filters {
        width: 100%;
        min-width: 0;
        padding: 20px;
        border-radius: 22px
    }

    .ftb-board-wrap {
        padding: 12px;
        border-radius: 20px
    }

    .ftb-board {
        min-width: 1040px;
        grid-template-columns:repeat(7, minmax(130px, 1fr)) 130px;
        border-radius: 18px
    }

    .ftb-head {
        min-width: 130px;
        min-height: 48px;
        font-size: 14px
    }

    .ftb-type-head, .ftb-type {
        width: 130px;
        min-width: 130px;
        max-width: 130px
    }

    .ftb-type, .ftb-cell {
        min-height: 190px
    }

    .ftb-card, .tb-board-card {
        padding: 10px;
        border-radius: 16px
    }

    .ftb-img {
        height: 128px
    }

    .ftb-card strong, .tb-board-card-title {
        font-size: 14px
    }

    .ftb-search input, .ftb-coach {
        height: 46px
    }
}

@media (max-width: 768px) {
    .ftb-page {
        padding: 18px 0 88px;
        background: #f4f8fb
    }

    .ftb-title, .ftb-layout {
        display: none
    }

    .ftb-mobile-shell {
        display: block;
        width: calc(100% - 28px);
        max-width: 520px;
        margin: 0 auto;
        direction: rtl
    }

    .ftb-mobile-top {
        padding: 20px;
        border-radius: 28px;
        background: linear-gradient(135deg, #fff, #f8fbfd);
        box-shadow: 0 16px 44px rgba(8, 59, 99, .1)
    }

    .ftb-mobile-top h2 {
        margin: 0;
        color: #083b63;
        font-size: 26px;
        font-weight: 800;
        line-height: 1.2
    }

    .ftb-mobile-top p {
        margin: 6px 0 16px;
        color: #6b7d8d;
        font-size: 14px;
        font-weight: 600
    }

    .ftb-mobile-controls {
        display: grid;
        grid-template-columns:1fr auto;
        gap: 10px;
        margin-bottom: 16px
    }

    .ftb-mobile-controls button, .ftb-mobile-filter-apply {
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #ef4b78, #d63c67);
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 12px 28px rgba(214, 60, 103, .22);
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease
    }

    .ftb-mobile-controls button {
        height: 42px;
        padding: 0 16px
    }

    .ftb-mobile-today {
        background: #eef6fb !important;
        color: #083b63 !important;
        box-shadow: none !important
    }

    .ftb-mobile-controls button:active, .ftb-mobile-filter-apply:active {
        transform: translateY(1px)
    }

    .ftb-mobile-days {
        display: flex;
        gap: 9px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none
    }

    .ftb-mobile-days::-webkit-scrollbar {
        display: none
    }

    .ftb-mobile-day {
        flex: 0 0 auto;
        min-width: 74px;
        height: 38px;
        border: 1px solid #e1e9f0;
        border-radius: 999px;
        background: #fff;
        color: #083b63;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease
    }

    .ftb-mobile-day.is-active {
        border-color: transparent;
        background: linear-gradient(135deg, #ef4b78, #d63c67);
        color: #fff;
        box-shadow: 0 10px 22px rgba(214, 60, 103, .22)
    }

    .ftb-mobile-categories {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px
    }

    .ftb-mobile-category {
        overflow: hidden;
        border: 1px solid #edf1f5;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 12px 34px rgba(8, 59, 99, .08);
        opacity: 1;
        max-height: 3000px;
        transition: max-height .3s ease, opacity .25s ease, margin .25s ease
    }

    .ftb-mobile-category.is-filtered-out {
        max-height: 0;
        opacity: 0;
        margin: 0;
        border-color: transparent;
        pointer-events: none
    }

    .ftb-mobile-category-head {
        width: 100%;
        display: grid;
        grid-template-columns:42px minmax(0, 1fr) auto auto;
        gap: 10px;
        align-items: center;
        border: 0;
        background: #fff;
        padding: 14px;
        text-align: right;
        cursor: pointer
    }

    .ftb-mobile-category-icon {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eef6fb;
        color: #ef4b78;
        font-size: 18px;
        font-weight: 800
    }

    .ftb-mobile-category-icon svg {
        width: 22px;
        height: 22px;
        display: block
    }

    .ftb-mobile-category-title {
        min-width: 0;
        color: #083b63;
        font-size: 16px;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .ftb-mobile-count {
        min-width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #fff2dd;
        color: #b7791f;
        font-size: 12px;
        font-weight: 800
    }

    .ftb-mobile-arrow {
        color: #91a1af;
        font-size: 20px;
        transition: transform .25s ease
    }

    .ftb-mobile-category.is-open .ftb-mobile-arrow {
        transform: rotate(180deg)
    }

    .ftb-mobile-category-body {
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height .3s ease, padding .3s ease
    }

    .ftb-mobile-category.is-open .ftb-mobile-category-body {
        max-height: 2400px;
        padding: 0 12px 14px
    }

    .tb-mobile-card {
        display: block;
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #edf1f5;
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease, box-shadow .2s ease, border-color .2s ease
    }

    .tb-mobile-card:active {
        transform: scale(.99)
    }

    .tb-mobile-card.is-hiding {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px) scale(.98);
        pointer-events: none
    }

    .tb-mobile-card.is-hidden {
        display: none !important
    }

    .tb-mobile-card-img {
        width: 100%;
        height: 136px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 12px;
        border-radius: 18px;
        background: linear-gradient(135deg, #eef6fb, #f8fbfd)
    }

    .tb-mobile-card-img img, .tb-mobile-card-img video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .tb-mobile-card-img-business_avatar {
        background: linear-gradient(135deg, #eef6fb 0%, #fff2f5 100%)
    }

    .tb-mobile-card-img-business_avatar .tb-card-header-avatar {
        width: 78px;
        height: 78px;
        border: 4px solid #fff;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 10px 24px rgba(8, 59, 99, .16)
    }

    .tb-mobile-card-img-empty {
        background: linear-gradient(135deg, #eef6fb, #f8fbfd)
    }

    .tb-mobile-card-main {
        min-width: 0
    }

    .tb-mobile-card-main strong {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #083b63;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.25
    }

    .tb-mobile-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin: 7px 0
    }

    .tb-mobile-meta span, .tb-mobile-tags span {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        min-height: 23px;
        padding: 3px 8px;
        border-radius: 999px;
        background: #eef6fb;
        color: #083b63;
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .tb-mobile-card-main p {
        margin: 0 0 7px;
        color: #5d7080;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .tb-mobile-business {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
        margin: 0 0 7px;
        color: #5d7080;
        font-size: 12px;
        font-weight: 700
    }

    .tb-mobile-business img {
        width: 24px;
        height: 24px;
        min-width: 24px;
        border-radius: 50%;
        object-fit: cover;
        background: #eef6fb
    }

    .tb-mobile-business span {
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .tb-mobile-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 9px
    }

    .tb-mobile-tags .tb-status-approved {
        background: #e8f7ee;
        color: #1d7f46
    }

    .tb-mobile-tags .tb-status-pending {
        background: #fff2dd;
        color: #b7791f
    }

    .tb-mobile-tags .tb-status-rejected {
        background: #fdecef;
        color: #b42343
    }

    .tb-mobile-card-main a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 7px 13px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ef4b78, #d63c67);
        color: #fff !important;
        font-size: 12px;
        font-weight: 800;
        text-decoration: none !important;
        box-shadow: 0 8px 18px rgba(214, 60, 103, .2)
    }

    .ftb-mobile-empty-week, .ftb-mobile-empty-filter {
        padding: 26px;
        border-radius: 24px;
        background: #fff;
        color: #083b63;
        text-align: center;
        font-size: 16px;
        font-weight: 800;
        box-shadow: 0 12px 34px rgba(8, 59, 99, .08)
    }

    .ftb-mobile-empty-filter[hidden] {
        display: none
    }

    .ftb-mobile-filter-sheet {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: block;
        pointer-events: none
    }

    .ftb-mobile-filter-overlay {
        position: absolute;
        inset: 0;
        background: rgba(8, 20, 34, .42);
        opacity: 0;
        transition: opacity .25s ease
    }

    .ftb-mobile-filter-panel {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 86vh;
        overflow: auto;
        padding: 18px 20px 92px;
        border-radius: 28px 28px 0 0;
        background: #fff;
        box-shadow: 0 -18px 50px rgba(8, 20, 34, .22);
        transform: translateY(105%);
        transition: transform .3s ease
    }

    .ftb-mobile-filter-sheet.is-open {
        pointer-events: auto
    }

    .ftb-mobile-filter-sheet.is-open .ftb-mobile-filter-overlay {
        opacity: 1
    }

    .ftb-mobile-filter-sheet.is-open .ftb-mobile-filter-panel {
        transform: translateY(0)
    }

    .ftb-mobile-filter-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px
    }

    .ftb-mobile-filter-head strong {
        color: #083b63;
        font-size: 20px;
        font-weight: 800
    }

    .ftb-mobile-filter-close {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: #eef6fb;
        color: #083b63;
        font-size: 26px;
        line-height: 1;
        cursor: pointer
    }

    .ftb-mobile-filter-actions {
        position: sticky;
        bottom: -92px;
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 10px;
        margin: 20px -20px -92px;
        padding: 14px 20px;
        background: #fff;
        border-top: 1px solid #edf1f5
    }

    .ftb-mobile-filter-reset {
        border: 1px solid #ef4b78;
        border-radius: 12px;
        background: #fff2f5;
        color: #d63c67;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: background .18s ease, color .18s ease, box-shadow .18s ease
    }

    .ftb-mobile-filter-reset:hover {
        background: #ef4b78;
        color: #fff;
        box-shadow: 0 8px 18px rgba(214, 60, 103, .2)
    }
}


