/* ===== FEED LAYOUT (mobile-first) ===== */
.feed {
    display: flex;
    flex-direction: column;
    height: 100%;
    contain: layout style;
}

.swiper-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
    will-change: transform;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== VIDEO STYLING (mobile-first: full width) ===== */
video, img.video {
    width: 100vw;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    background-color: black;
}

video::before {
    content: "";
    display: block;
    height: 100%;
    border-radius: 0;
    background-size: cover;
    background-position: center;
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    contain: layout style paint;
}

.video-description {
    color: white;
    width: calc(100% - 80px);
    font-size: var(--font-size-sm, 14px);
    display: flex;
    justify-content: start;
    align-items: flex-end;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.video-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: var(--spacing-lg, 16px) var(--spacing-md, 12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    gap: var(--spacing-sm, 8px);
    background-image: linear-gradient(0deg,rgba(0,0,0,.4),transparent);
    border-radius: 0;
}

/* ===== SCROLL GUIDE ===== */
.scroll-guide-container {
    position: absolute;
    display: flex;
    align-items: end;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0) 100%
    );
    transition: opacity 3s ease;
    border-radius: 0;
}

.scroll-guide-container.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.scroll-guide-container .scroll-guide {
    pointer-events: none;
    width: inherit;
}
.scroll-guide-container p {
    margin: 0 0 22px 0;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background-color: #FF690F;
    color: white;
    font-size: var(--font-size-sm, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    border: none;
    cursor: pointer;
    width: calc(100% - 80px);
    border-radius: var(--radius-md, 8px);
    height: 36px;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease-in-out;
    min-height: var(--touch-target, 44px);
    touch-action: manipulation;
}

.cta-btn:hover {
    transform: scale(1.02);
}

.cta-btn .right-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 1s ease;
}

.cta-btn:hover .right-arrow {
    animation: move-arrow 1s linear infinite;
}

@keyframes move-arrow {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

.cta-btn svg {
    margin-right: var(--spacing-sm, 8px);
}

.cta-group {
    display: flex;
    align-items: center;
}

.cta-group img {
    height: 24px;
    width: 24px;
    margin-right: var(--spacing-sm, 8px);
}

/* ===== BUTTON CONTAINER (mobile-first: always visible) ===== */
.button-container {
    position: absolute;
    top: 0;
    z-index: 8;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 12px 0;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent);
    border-radius: 0;
}

.image-container {
    height: 40px;
    width: 40px;
    background: var(--color-border, rgba(0, 0, 0, 0.10));
    border-radius: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: var(--touch-target, 44px);
    min-height: var(--touch-target, 44px);
}

.left-container, .right-container {
    width: 40px;
    cursor: pointer;
    min-width: var(--touch-target, 44px);
}

.right-container {
    display: flex;
    justify-content: end;
    cursor: pointer;
}

/* Mobile: show back, search; hide play/pause/mute controls */
.image-container:has(.back) {
    display: flex;
    background: none;
}

.image-container:has(.search) {
    display: flex;
    border: 1px solid rgba(221, 221, 221, 0.50);
}

.image-container:has(.play) {
    display: none;
}

.image-container:has(.pause) {
    display: none;
}

.image-container:has(.unmute) {
    display: none;
}

.image-container:has(.mute) {
    display: none;
}

.image-container img.back {
    height: 24px;
    width: 24px;
}

.image-container img.search {
    height: 16px;
    width: 16px;
}

.image-container img.play {
    height: 24px;
    width: 24px;
}

.image-container img.pause {
    height: 24px;
    width: 24px;
}

.image-container img.unmute {
    height: 24px;
    width: 24px;
}

.image-container img.mute {
    height: 24px;
    width: 24px;
}

/* ===== MOBILE BUTTON CONTAINER ===== */
.mobile-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
}

.mobile-image-container {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: var(--touch-target, 44px);
    min-height: var(--touch-target, 44px);
}

.mobile-image-container:has(.unmute) {
    display: none;
}

.mobile-image-container:has(.mute) {
    display: none;
}

/* ===== INTERACTIONS CONTAINER (mobile-first: overlaid) ===== */
.interactions-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 9;
    color: white;
    gap: 14px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    width: 64px;
}

.interactions-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs, 4px);
}

.interactions-box span {
    color: #FFFFFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.41);
    text-align: center;
    font-size: var(--font-size-sm, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg, 12px);
    background: var(--color-border, rgba(0, 0, 0, 0.10));
    cursor: pointer;
    min-width: var(--touch-target, 44px);
    min-height: var(--touch-target, 44px);
    touch-action: manipulation;
}

/* Mobile: show white icons, hide black icons */
.icon-box .black {
    display: none;
}

.icon-box .black.liked {
    display: none;
}

.icon-box .white {
    display: block;
}

.icon-box .white.liked {
    display: none;
}

/* ===== SLIDE NAVIGATION ===== */
.slide-navigation {
    display: none;
}

.scroll-icon {
    height: 48px;
    width: 48px;
    border-radius: 24px;
    min-width: var(--touch-target, 44px);
    min-height: var(--touch-target, 44px);
}

.scroll-icon:hover {
    background: var(--color-hover-light, rgba(0, 0, 0, 0.05));
}

/* ===== MORE OPTIONS (mobile-first: bottom sheet) ===== */
.more-options-box {
    position: fixed;
    bottom: 0;
    left: 0;
    top: unset;
    transform: unset;
    display: none;
    padding: var(--spacing-lg, 16px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-lg, 16px);
    border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
    background: var(--color-bg, #FFF);
    box-shadow: 0 12px 36px 0 var(--color-shadow-light, rgba(0, 0, 0, 0.05));
    width: 100vw;
    z-index: 10;
    animation: slide-in 400ms ease-out;
}

.more-options {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 17px;
    width: 100%;
    cursor: pointer;
    min-height: var(--touch-target, 44px);
    align-items: center;
}

.more-options span {
    color: var(--color-text, #000);
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-shadow: unset;
}

.options-divider {
    display: block;
    height: 1px;
    background-color: #ddd;
    width: 100%;
}

.more-options.head {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* ===== FEED NAV ===== */
.feed-nav {
    display: none;
}

.feed-nav-mob {
    display: none;
}

.feed-header {
    display: none;
}

.feed-slide-navigation {
    display: none;
}

.feeds-mob {
    padding: 0;
    height: 100vh;
}

/* ===== SHARE MODAL ===== */
.share-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-overlay, rgba(0, 0, 0, 0.5));
    display: none;
    z-index: 2;
}

.share-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
    background: var(--color-bg, #FFF);
    box-shadow: 0 12px 36px 0 var(--color-shadow-light, rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg, 16px);
    animation: slide-in 400ms ease-out;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
}

.share-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-top: var(--spacing-lg, 16px);
    padding-left: var(--spacing-lg, 16px);
    padding-right: var(--spacing-lg, 16px);
    color: var(--color-text, #000);
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.share-apps {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md, 12px);
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-drag: none;
}

.social-box {
    width: 89px;
    padding-left: var(--spacing-lg, 16px);
    padding-right: var(--spacing-lg, 16px);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 12px);
    cursor: pointer;
    text-align: center;
    min-height: var(--touch-target, 44px);
}

.social-box span {
    color: var(--color-text, #000);
    text-align: center;
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.6;
}

.social-icon {
    height: 56px;
    width: 56px;
}

@keyframes move-left-arrow {
    0% {
        left: calc(100% - 48px);
    }
    100% {
        left: 12px;
    }
}

@keyframes move-right-arrow {
    0% {
        left: 12px;
    }
    100% {
        left: calc(100% - 48px);
    }
}

.social-scroll {
    position: absolute;
    top: 86px;
}

.social-scroll.left {
    left: 12px;
}

.social-scroll.left.animate {
    animation: move-left-arrow 150ms linear;
}

.social-scroll.right {
    right: 12px;
}

.social-scroll.right.animate {
    animation: move-right-arrow 150ms linear;
}

.social-scroll img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 46px;
    border: 1px solid rgba(182, 182, 182, 0.10);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 7px;
}

.share-divider {
    display: block;
    height: 1px;
    background-color: #ddd;
    width: 100%;
}

.share-control {
    padding: var(--spacing-lg, 16px) var(--spacing-xs, 4px) var(--spacing-lg, 16px) var(--spacing-lg, 16px);
    border-radius: var(--radius-md, 8px);
    background: rgba(190, 190, 190, 0.10);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    height: 56px;
    width: 94%;
    margin-top: var(--spacing-lg, 16px);
    margin-left: var(--spacing-lg, 16px);
    margin-right: var(--spacing-lg, 16px);
}

.copy-text {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 13px;
}

.copy-text img {
    height: 24px;
    width: 24px;
}

.copy-text span {
    height: 24px;
    width: 162px;
    color: var(--color-text, #000);
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.share-button {
    width: 80px;
    height: 48px;
    border-radius: var(--radius-md, 8px);
    color: #FFF;
    text-align: center;
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    cursor: pointer;
    min-height: var(--touch-target, 44px);
}

/* ===== REPORT THANKS MODAL ===== */
.report-thanks-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-overlay, rgba(0, 0, 0, 0.5));
    display: none;
    z-index: 2;
}

.report-thanks-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: var(--spacing-xl, 24px);
    border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
    background: var(--color-bg, #FFF);
    box-shadow: 0 12px 36px 0 var(--color-shadow-light, rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2xl, 32px);
    animation: slide-in 400ms ease-out;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
}

.report-details-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md, 12px);
}

.report-details-box img {
    width: 64px;
    height: 64px;
}

.report-details-box .header {
    display: flex;
    height: 21px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: var(--color-text, #000);
    text-align: center;
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-top: var(--spacing-xs, 4px);
}

.report-details-box .description {
    color: var(--color-text-secondary, rgba(0, 0, 0, 0.70));
    text-align: center;
    font-size: var(--font-size-sm, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-self: stretch;
}

.report-done {
    display: flex;
    height: 40px;
    padding: var(--spacing-sm, 8px) var(--spacing-lg, 16px);
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: var(--radius-md, 8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    cursor: pointer;
    color: #FFF;
    font-size: var(--font-size-base, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    min-height: var(--touch-target, 44px);
}

/* ===== POWERED ===== */
.powered {
    position: absolute;
    top: 0;
    left: calc(50% - 75px);
    z-index: 9;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 12px 12px 0;
    align-items: center;
    cursor: pointer;
    background: unset;
    border-radius: unset;
}

/* ===== TABLET+ (min-width: 768px) ===== */
@media (min-width: 768px) {
    .feed {
        flex-direction: row;
    }

    .swiper-container {
        height: 100%;
    }

    video, img.video {
        width: 50.32vh;
        height: 100%;
        border-radius: 15px;
    }

    video::before {
        border-radius: 15px;
    }

    .video-description {
        width: 100%;
    }

    .cta-btn {
        bottom: 30px;
        width: 100%;
        padding: 7px;
    }

    .video-details {
        border-radius: 15px;
        align-items: flex-end;
    }

    /* Desktop: hide back/search, show play/pause/mute */
    .image-container:has(.back) {
        background: none;
        display: none;
    }

    .image-container:has(.search) {
        display: none;
    }

    .image-container:has(.play) {
        display: none;
    }

    .image-container:has(.pause) {
        display: flex;
    }

    .image-container:has(.unmute) {
        display: flex;
    }

    .image-container:has(.mute) {
        display: none;
    }

    .mobile-button-container {
        display: none;
    }

    .interactions-container {
        position: static;
        bottom: auto;
        right: auto;
        z-index: auto;
        color: inherit;
        gap: var(--spacing-md, 12px);
    }

    .interactions-box span {
        color: var(--color-text, #000);
        text-shadow: none;
    }

    .icon-box .black {
        display: block;
    }

    .icon-box .black.liked {
        display: none;
    }

    .icon-box .white {
        display: none;
    }

    .icon-box .white.liked {
        display: none;
    }

    .slide-navigation {
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 90px;
        height: calc(100vh - 80px);
    }

    .feed-nav {
        display: block;
    }

    .feed-header {
        display: flex;
    }

    .feed-slide-navigation {
        display: flex;
    }

    .feeds-mob {
        padding: 12px 24px;
        height: auto;
    }

    .button-container {
        display: none;
        border-radius: 12px;
    }

    .video-container:hover .button-container {
        display: flex;
    }

    .share-box {
        position: absolute;
        top: calc(50vh - 129px);
        left: calc(50vw - 250px);
        bottom: auto;
        width: 500px;
        height: 258px;
        border-radius: var(--radius-lg, 12px);
        animation: none;
        touch-action: auto;
        user-select: auto;
        -webkit-user-drag: auto;
    }

    .share-apps {
        width: 467px;
        touch-action: auto;
        user-select: auto;
        -webkit-user-drag: auto;
    }

    .more-options-box {
        position: absolute;
        top: -62px;
        left: 50%;
        bottom: auto;
        transform: translateX(-16%);
        width: 165px;
        border-radius: var(--radius-lg, 12px);
        animation: none;
    }

    .more-options span {
        font-size: var(--font-size-sm, 14px);
        font-weight: 400;
    }

    .options-divider {
        display: none;
    }

    .more-options.head {
        display: none;
    }

    .report-thanks-box {
        position: absolute;
        top: calc(50vh - 138px);
        left: calc(50vw - 188px);
        bottom: auto;
        width: 375px;
        height: 275px;
        border-radius: var(--radius-lg, 12px);
        animation: none;
        touch-action: auto;
        user-select: auto;
        -webkit-user-drag: auto;
    }

    .powered {
        background: unset;
        border-radius: unset;
    }

    .scroll-guide-container {
        width: 50.32vh;
        height: 100%;
        border-radius: 12px;
    }
}

@media (min-width: 1025px) {
    .feed-nav-mob {
        display: none;
    }
}

@media (min-width: 1025px) and (max-width: 1130px) {
    .more-options-box {
        left: -90px;
    }
}

/* ===== CTA FRAME ===== */
.bl-cta-frame {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    height: 100%;
    justify-content: center;
    opacity: 0;
    position: absolute;
    transition: opacity 1s ease-in-out;
    width: 100%;
    z-index: 0;
    font-size: 12px;
    font-family: Inter, sans-serif;
    top: 0;
}

.bl-cta-frame .cta-model {
    height: 95%;
    width: 90%;
    border-radius: 16px;
    display: flex;
    flex-direction: column-reverse;
    margin-top: -8px;
}

.bl-cta-frame .cta-model .cta-header-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 8px;
    background: black;
    border-radius: 0 0 16px 16px;
}

.bl-cta-frame .cta-model .cta-header-bar .cta-back {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px;
    cursor: pointer;
    margin-left: 8px;
    font-size: 12px;
    font-family: Inter, sans-serif;
    min-height: var(--touch-target, 44px);
    min-width: var(--touch-target, 44px);
}

.bl-cta-frame .cta-model .cta-header-bar .cta-open {
    align-items: center;
    background: black;
    border: solid 1px white;
    border-radius: 8px;
    color: white;
    display: flex;
    gap: 8px;
    padding: 8px;
    cursor: pointer;
    margin-right: 8px;
    font-size: 12px;
    font-family: Inter, sans-serif;
    min-height: var(--touch-target, 44px);
}

.bl-cta-frame .cta-model .cta-header-bar .cta-preview {
    font-size: 12px;
    font-family: Inter, sans-serif;
    color: rgba(255, 255, 255, .6);
    align-self: center;
}

.bl-cta-frame .cta-model iframe {
    position: relative;
    width: 100%;
    height: calc(100% - (40px + 16px));
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: black;
}

/* ===== TABLET+ CTA Frame ===== */
@media (min-width: 768px) {
    .bl-cta-frame .cta-model {
        height: 80%;
        width: 80%;
        flex-direction: column;
        margin-top: 0;
    }

    .bl-cta-frame .cta-model .cta-header-bar {
        border-radius: 16px 16px 0 0;
    }

    .bl-cta-frame .cta-model iframe {
        border-radius: 0 0 16px 16px;
    }
}

/* ===== STATUS PILL (SSE + Clickstream) ===== */
.status-pill {
    position: fixed;
    bottom: calc(var(--mobile-nav-height, 48px) + 8px);
    left: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.status-pill.active {
    opacity: 1;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sse-dot {
    background: rgba(255, 255, 255, 0.25);
}

.sse-dot.on {
    background: #4ade80;
    animation: dot-pulse 2.5s ease-in-out infinite;
}

.cs-dot {
    background: rgba(255, 255, 255, 0.25);
}

.cs-dot.ok {
    background: #4ade80;
    box-shadow: 0 0 4px rgba(74, 222, 128, 0.6);
}

.cs-dot.err {
    background: #f87171;
    box-shadow: 0 0 4px rgba(248, 113, 113, 0.6);
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-brain {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.status-brain.flash {
    color: #facc15;
    transform: scale(1.25);
}

.status-count {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

@media (min-width: 1025px) {
    .status-pill {
        bottom: 12px;
        left: calc(var(--sidebar-width, 240px) + 12px);
    }
}
