.atisuto-map-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.atisuto-filter-sidebar {
    flex: 0 0 300px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    overflow-y: auto;
}

.atisuto-filter-search {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #861e80;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.atisuto-filter-search:focus {
    outline: none;
    border-color: #861e80;
}

.atisuto-filter-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background: white;
    cursor: pointer;
}

.atisuto-filter-select:focus {
    outline: none;
    border-color: #662d91;
}

.atisuto-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.atisuto-filter-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

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

.atisuto-business-item {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.atisuto-business-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.atisuto-business-item.active {
    border-left-color: #662d91;
    background: #fff;
    box-shadow: 0 2px 8px rgba(102, 45, 145, 0.2);
}

.atisuto-business-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.atisuto-business-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.atisuto-business-tags {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.atisuto-business-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #e0e0e0;
    border-radius: 4px;
    font-size: 11px;
    color: #555;
}

.atisuto-business-tag.category {
    background: #662d91;
    color: white;
}

.atisuto-business-tag.subcategory {
    background: #9966cc;
    color: white;
}

.atisuto-filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.atisuto-filter-btn {
    flex: 1;
    padding: 8px 12px;
    background: #662d91;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s ease;
}

.atisuto-filter-btn:hover {
    background: #551f7a;
}

.atisuto-filter-btn.secondary {
    background: #999;
}

.atisuto-filter-btn.secondary:hover {
    background: #777;
}

.atisuto-map-canvas {
    flex: 1;
    min-height: 300px;
    border-radius: 12px;
}

.atisuto-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .atisuto-map-container {
        flex-direction: column;
    }

    .atisuto-filter-sidebar {
        flex: 1;
        max-height: 300px;
    }
}
