/* Industry Filter Styles */
.industry-filter-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    max-height: 300px;
    overflow-y: auto;
}

.industry-filter-header {
    display: flex;
    gap: 5px;
    padding: 8px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.industry-control-btn {
    flex: 1;
    padding: 4px 8px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.industry-control-btn:hover {
    background: #e9ecef;
}

.industry-control-btn:active {
    background: #dee2e6;
}

.industry-checkboxes {
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.industry-checkbox-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
}

.industry-checkbox-item input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.industry-checkbox-item label {
    cursor: pointer;
    margin: 0;
    flex: 1;
    font-weight: normal;
}

.industry-checkbox-item:hover {
    background: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .industry-filter-header {
        flex-direction: column;
    }
    
    .industry-control-btn {
        margin-bottom: 2px;
    }
}

