body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#map {
    display: inline-block;
    width: 100%;
    height: 100%;
}

#controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.control-section {
    margin-bottom: 15px;
}

.control-section:last-child {
    margin-bottom: 0;
}

.control-section h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.combo-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}