/* Anchor Navigation Styles */
.anchor-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none !important;
    padding: 1.25rem 0;
    margin: 0 0 1.5rem 0;
}

.anchor-navigation li {
    margin: 0;
    padding: 0;
}

.anchor-navigation a {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #374151;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.anchor-navigation a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

@media (max-width: 768px) {
    .anchor-navigation {
        padding: 1rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .anchor-navigation::-webkit-scrollbar {
        display: none;
    }
}
