.tabs-scroll-nav{
display:flex;
align-items:center;
gap:10px;
width:100%;
overflow-x:auto;
padding:8px;
box-sizing:border-box;
position:sticky;
top:var(--tabs-scroll-sticky-top, 0);
z-index:20;
background:#f1f1f1;
border-radius:12px;
scroll-behavior:smooth;
scrollbar-width:none;
}

.tabs-scroll-nav::-webkit-scrollbar{
display:none;
}

.tabs-scroll-nav a{
flex:0 0 auto;
text-decoration:none;
padding:14px 24px;
border-radius:10px;
color:#666;
transition:background-color .3s, color .3s, box-shadow .3s;
white-space:nowrap;
}

.tabs-scroll-nav a.active{
background:#fff;
color:#000;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}
