html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
}
#map {
    height: 100%;
    width: 100%;
    position: absolute;
}
#logo {
    position: absolute;
    top: 10px;
    left: 50px;
    z-index: 1000;
    /* background: white; */
    padding: 5px;
    /* border-radius: 10px; */
    height: 50px;
}
#info-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #f0f0f0;
    border-top: 2px solid #ccc;
    z-index: 999;
    display: flex;
    flex-direction: column;
}
#info-panel.hidden {
    display: none;
}
#panel-header {
    background: #ddd;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: ns-resize;
}
#panel-title {
    font-weight: bold;
}
#panel-controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}
#panel-resizer {
    height: 5px;
    cursor: row-resize;
    background: #bbb;
}
#panel-content {
    flex: 1;
    border: none;
    width: 100%;
}
#legend {
    position: absolute;
    top: 80px;
    left: 60px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.9em;
    z-index: 1000;
}
.legend-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    vertical-align: middle;
    border: 1px solid #333;
}
