/* EZ Chapter Locations — Map Styles */



#EZChapterMapWrapper {
    width: 100%;
    font-family: inherit;
}

#EZChapterMapWrapper p {
	line-height: normal !important;
	margin: 10px 0 !important
	
} 

/* ── Search bar ─────────────────────────────────────────────── */
#ezch-search-bar {
    background: var(--ezch-primary);
	padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#ezch-search-field {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 600px;
}

#EZChapterMapZipSearch {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.ezch-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    background: var(--ezch-btn);
	    color: var(--ezch-btn-text);
    transition: background 0.2s, color 0.2s;
}
.ezch-btn:hover {
    background: var(--ezch-btn-hover);
    color: var(--ezch-btn-hover-text);
}

/* ── Map canvas ─────────────────────────────────────────────── */
#EZChapterMap {
    width: 100%;
    height: 480px;
}

/* ── Results area ───────────────────────────────────────────── */
#ezch-results {
    padding: 20px 0;
}

.ezch-results-heading {
       color: var(--ezch-secondary);
    margin-bottom: 16px;
    font-size: 1.2em;
}

.ezch-distance {
    color: var(--ezch-primary);
    font-size: 0.9em;
    margin: 4px 0 8px;
}

#ezch-results__loading p {
    padding: 16px 0;
       color: var(--ezch-secondary);
}

.ezch-no-results {
    color: var(--ezch-secondary);
    padding: 12px 0;
}

/* ── Single view back button ────────────────────────────────── */
.ezch-single-back {
    margin-bottom: 12px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    #EZChapterMap { height: 300px; }
    #ezch-search-field { flex-direction: column; }
    #EZChapterMapZipSearch, .ezch-btn { width: 100%; }
}
