/* Styles for dropdown categories */
.dropdown-content {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 1000;
}

/* Style for Industry/Service Members buttons */
.filter-btn.industry-btn.active,
.filter-btn.service-btn.active {
    background-color: #071B48;
    color: white;
}

.filter-nav {
    position: relative;
}



.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown-item.parent-category {
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.dropdown-item.subcategory {
    padding-left: 25px;
    font-size: 0.95em;
}

.dropdown-item.highlighted {
    background-color: #e6f0ff;
    position: relative;
}

.dropdown-item.highlighted::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #071B48;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        max-height: 250px;
    }
    
    .dropdown-item {
        padding: 12px 15px;
    }
}