/* ============ UI Controls ============ */
#controls {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(22, 33, 62, 0.9);
    padding: 15px;
    border-radius: 8px;
    z-index: 50;
}

#controls button {
    margin: 5px;
    padding: 8px 15px;
    background: #4299e1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#controls button:hover {
    background: #3182ce;
}

#legend {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(22, 33, 62, 0.9);
    padding: 15px;
    border-radius: 8px;
    z-index: 50;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 10px;
}

#info {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(22, 33, 62, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 50;
    font-size: 12px;
    color: #a0aec0;
}
