body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

#lidarCanvas {
    width: 75%;
    height: 100%;
    background-color: #000;
}

#adasCanvas {
    width: 25%;
    height: 100%;
    background-color: #080810; /* A slightly different dark blue/black */
    border-left: 2px solid #2a2a4a;
}

.adas-landmarks {
    position: absolute;
    top: 20px;
    right: 20px;
    width: calc(25% - 40px);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.adas-landmarks h3 {
    font-size: 18px;
    color: #888;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    margin: 0 0 10px 0;
}

.adas-landmarks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adas-landmarks li {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 14px;
}