/* RESET */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #111;
    font-family: Arial, sans-serif;
    color: #eee;
}

/* MAIN APP */
#app {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* SIDEBAR */
#sidebar {
    width: 300px;
    background: #181818;
    border-right: 1px solid #333;
    padding: 15px;
    overflow-y: auto;
}

#sidebar h2 { margin-top: 0; color: #4ec3ff; }
#sidebar input { width: 100%; padding: 7px; margin-bottom: 12px; }

.vehicle {
    background: #222;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}
.vehicle:hover { background: #333; }

/* MAP */
#map {
    flex: 1;
    height: 100%;
    width: 100%;
}

/* INFO PANEL */
#info-panel {
    width: 350px;
    background: #202020;
    border-left: 1px solid #333;
    position: absolute;
    right: -350px;
    top: 0;
    height: 100%;
    padding: 20px;
    transition: 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}
#info-panel.active { right: 0; }

#info-panel input[type="datetime-local"] {
    width: 100%;
    padding: 6px;
    margin-bottom: 6px;
}

#info-panel button {
    width: 100%;
    padding: 8px;
    background: #4ec3ff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 6px;
    cursor: pointer;
}
#info-panel button:hover {
    background: #2ca6dc;
}

#playback-controls {
    margin-top: 10px;
}
#pb-slider {
    width: 100%;
}
