
    .dynamic_menu.svelte-1hc2r4j {
        position: fixed;
        top: 55px;
        width: 100%;
        z-index: 50;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-bottom-color);
    }

    .wrapper.svelte-1hc2r4j {
        padding: 12px 16px;
    }

    .search_bar.svelte-1hc2r4j {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .search_bar.svelte-1hc2r4j input[type="search"]:where(.svelte-1hc2r4j) {
        width: 220px;
        height: 36px;
        padding: 6px 12px;
        font-size: 14px;
        color: #333;

        border-radius: 6px;
        border: 2px solid #d9d9d9;
        background: #fff;
        outline: none;

        transition: border-color 300ms ease,
        box-shadow 300ms ease;
    }

    .search_bar.svelte-1hc2r4j input[type="search"]:where(.svelte-1hc2r4j):focus {
        border-color: #1677ff;
        box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
    }

    .search_bar.svelte-1hc2r4j input[type="search"]:where(.svelte-1hc2r4j)::placeholder {
        color: #aaa;
    }

    .search_bar.svelte-1hc2r4j input[type="submit"]:where(.svelte-1hc2r4j) {
        height: 36px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 6px;

        border: 2px solid #1677ff;
        background: #1677ff;
        color: #fff;

        cursor: pointer;

        transition: background-color 300ms ease,
        border-color 300ms ease,
        opacity 300ms ease;
    }

    .search_bar.svelte-1hc2r4j input[type="submit"]:where(.svelte-1hc2r4j):hover {
        background: #4096ff;
        border-color: #4096ff;
    }

    .search_bar.svelte-1hc2r4j input[type="submit"]:where(.svelte-1hc2r4j):active {
        opacity: 0.85;
    }

    .title_bar.svelte-1hc2r4j {
        display: flex;
        height: 40px;
        align-items: center;
        justify-content: space-between;
    }

    .title.svelte-1hc2r4j {
        font-size: 18px;
        font-weight: 600;
        color: #111;
    }

    .tab_menu.svelte-1hc2r4j {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    /* ===== Tabs ===== */
    .tab.svelte-1hc2r4j {
        display: flex;
        gap: 20px;
    }

    .tab_item.svelte-1hc2r4j {
        position: relative;
        padding: 6px 2px;
        font-size: 14px;
        color: #666;
        text-decoration: none;

        transition: color 500ms ease;
    }

    .tab_item.svelte-1hc2r4j::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #1677ff;

        opacity: 0;
        transform: scaleX(0);

        transition: opacity 500ms ease,
        transform 500ms ease;
    }

    .tab_item.svelte-1hc2r4j:hover,
    .tab_item.active.svelte-1hc2r4j {
        color: #1677ff;
    }

    .tab_item.svelte-1hc2r4j:hover::after,
    .tab_item.active.svelte-1hc2r4j::after {
        opacity: 1;
        transform: scaleX(1);
    }


    .display.svelte-1hc2r4j {
        display: flex;
        gap: 8px;
    }

    .display_item.svelte-1hc2r4j {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 999px;
        border: none;

        background: #f2f2f2;
        color: #666;
        cursor: pointer;

        transition: background-color 500ms ease,
        color 500ms ease;
    }

    .display_item.svelte-1hc2r4j:hover,
    .display_item.active.svelte-1hc2r4j {
        background: #1677ff;
        color: #fff;
    }
