/* Opportunity Insights Dataset Specific Styles */

/* Use standard USCB styling as baseline - matches standard map */
.opportunityinsights-active-dataset .county-data-container {
    /* Inherits from base .county-data-container styles */
}

/* Top connections lists styling */
.opportunityinsights-active-dataset .salary-data-rows {
    background: var(--surface-hover);
    border-radius: 6px;
    margin-top: 8px;
}

.opportunityinsights-active-dataset .salary-data-rows .data-row {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.opportunityinsights-active-dataset .salary-data-rows .data-row:last-child {
    border-bottom: none;
}

.opportunityinsights-active-dataset .salary-data-rows .data-row:hover {
    background-color: #e9ecef;
}

.opportunityinsights-active-dataset .salary-data-rows .data-label {
    color: #495057;
    font-weight: 500;
}

.opportunityinsights-active-dataset .salary-data-rows .data-value {
    color: var(--primary-dark);
    font-weight: 600;
    text-align: right;
}

