body {
    display: flex;
    font-family: sans-serif;
}

#sidebar {
    width: 250px;
    padding: 10px;
    background: #f0f0f0;
}

#mapContainer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ddd;
}

canvas {
    border: 1px solid #000;
}

.resultsBox {
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #aaa;
    margin-top: 5px;
    padding: 5px;
}

.resultItem {
    padding: 4px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

.resultItem:hover {
    background-color: #def;
}