body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.search-container {
    margin-bottom: 20px;
    position: relative;
}
#search-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.main-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.results-container {
    display: flex;
    gap: 20px;
    height: 400px;
}
.azure-container {
    display: flex;
    gap: 20px;
    height: 300px;
}
#results-list {
    flex: 0 0 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}
#azure-results-list {
    flex: 0 0 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #f8f8ff;
}
#map, #azure-map {
    flex: 1;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.result-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}
.result-item:hover {
    background-color: #f5f5f5;
}
.result-item h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}
.result-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.result-item.active {
    background-color: #e0f0ff;
}
.azure-result-item {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.2s;
}
.azure-result-item:hover {
    background-color: #f0f0ff;
}
.azure-result-item h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #0078d4;
}
.azure-result-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.azure-result-item.active {
    background-color: #e0f0ff;
}
.marker-popup {
    max-width: 200px;
}
.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}
.list-header {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    margin-top: 0;
    margin-bottom: 10px;
}
.azure-marker {
    background-color: #0078d4;
    border: 2px solid white;
}
