/* County Selector Shared Styles */
/* Used by: company_registration.php, admin/manage_service_areas.php */

.service-areas-grid {
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease;
    min-height: 300px;
}

.service-areas-grid:hover {
    border-color: #4a90e2;
}

.service-areas-grid.has-selections {
    border-color: #28a745;
}

.state-selector {
    margin-bottom: 1rem;
}

.counties-container {
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.counties-container.show {
    display: block;
}

.county-row {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    font-size: 0.875rem;
}

.county-row:hover {
    background-color: #f8f9fa !important;
    border-color: #4a90e2 !important;
}

.county-row.selected {
    background-color: #e8f5e8 !important;
    border-color: #28a745 !important;
}

.county-row.selected:hover {
    background-color: #d4f4d4 !important;
    border-color: #1e7e34 !important;
}

.selected-tags {
    margin-top: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #28a745;
    display: none;
}

.selected-tags.show {
    display: block;
}

.county-tag {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin: 0.25rem;
    font-size: 0.8rem;
}

.county-tag button {
    background: none;
    border: none;
    color: white;
    margin-left: 0.5rem;
    cursor: pointer;
    font-weight: bold;
}

/* Map styles */
#map {
    height: 500px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
} 