#layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

#left-side {
    flex: 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

#map {
    height: 500px;
    flex: 1;
    min-height: 400px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#right-side {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    border-left: 1px solid #ddd;
}

#results-list {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.4em;
}

#results-list .item {
/*    padding: 8px;
    border-bottom: 1px solid #eee;*/
}

