/**
 * Public styles for Flow Maps
 */

.flow-maps-search-container,
.flow-maps-locator,
.flow-maps-modal,
.flow-maps-results,
.flow-maps-container {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.flow-maps-container {
    margin: 20px 0;
}

.flow-maps-search {
    margin-bottom: 20px;
}

#flow-maps-search-input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#flow-maps-map {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.flow-maps-results {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.flow-maps-results h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

#flow-maps-results-list {
    max-height: 300px;
    overflow-y: auto;
}

.flow-maps-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.flow-maps-result-item:last-child {
    border-bottom: none;
}

.flow-maps-result-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.flow-maps-result-address {
    color: #666;
    font-size: 0.9em;
}