.custom-dynamic-menu {
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.custom-dynamic-menu::-webkit-scrollbar {
    display: none;
}

.custom-dynamic-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.custom-dynamic-menu .menu-item {
    padding: 10px 5px;
    margin-right: 0;
}

.custom-dynamic-menu .menu-item a {
    color: black;
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-size: 14px; /* ← سایز فونت کم‌شده */
    font-weight: 600;
}

.custom-dynamic-menu .menu-item a:hover {
    background-color: #f0f0f0; /* ← هاور ساده و تمیز */
}

.custom-dynamic-menu .menu-item.active a {
    background-color: black;
    color: white;
    border-radius: 8px;
}
