.sticky-nav .nav-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.sticky-nav .nav-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex: 1 1 auto;
    /* Hide scrollbar visually while keeping it scrollable */
    scrollbar-width: none;
}

.sticky-nav .nav-content::-webkit-scrollbar {
    display: none;
}

.sticky-nav .nav-links {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.sticky-nav .nav-links li {
    flex-shrink: 0;
}

.sticky-nav .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.sticky-nav .nav-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    color: #333;
}

.sticky-nav .nav-arrow:hover {
    background: #e6e6e6;
    color: #0a63bb;
}

/* Hide the "Detail" tab on mobile (below 768px) */
@media (max-width: 768px) {
    .sticky-nav .nav-links li:has(a[href="#info"]) {
        display: none;
    }
}