.poi-section {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    min-height: 500px;
}

.poi-filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.poi-filter {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.poi-filter:hover,
.poi-filter.active {
    background: #014889;
    color: #fff;
    border-color: #014889;
}

.poi-sidebar {
    width: 280px;
    height: calc(100% - 50px);
    overflow-y: auto;
    border-right: 1px solid #ddd;
    background: #fff;
}

.poi-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.poi-list li {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 13px;
}

.poi-list li:hover,
.poi-list li.active {
    background: #e8f0f8;
}

.poi-list li .poi-name {
    font-weight: 600;
    display: block;
}

.poi-list li .poi-dist {
    font-size: 11px;
    color: #888;
}

.poi-map-wrap {
    flex: 1;
    min-width: 300px;
    height: calc(100% - 50px);
}

#poi-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.poi-details {
    padding: 10px 12px;
    background: #fafafa;
    border-top: 1px solid #ddd;
    font-size: 13px;
    display: none;
}

.poi-details.visible {
    display: block;
}

.poi-loading {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

@media (max-width: 768px) {
    .poi-sidebar {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .poi-map-wrap {
        width: 100%;
        height: 300px;
    }
}
