body {
    background-color: #e8e8e8;
}

.fn-pill-scroll-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fn-pill-track {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.25rem 0;
    flex: 1;
}

.fn-pill-track::-webkit-scrollbar {
    display: none;
}

.fn-pill {
    flex-shrink: 0;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.fn-pill-active {
    background: linear-gradient(90deg, #050810 0%, #0d1b2e 50%, #0a1420 100%);
    color: #d4a017;
    cursor: default;
}

.fn-pill-inactive {
    background-color: #e8e8e8;
    color: #1b3a63;
}

.fn-pill-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #1b3a63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fn-pill-arrow:hover {
    background-color: #0d1b2e;
}

.fn-scroll-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fn-scroll-track::-webkit-scrollbar {
    display: none;
}

.fn-ticker-arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: #1b3a63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fn-ticker-arrow:hover {
    background-color: #0d1b2e;
}