/* MapTrax v2.10.0.0 — Multi-Select options bar
   Sits below the mode buttons in the map-controls panel; visible only when
   Multi-Select mode is active. Palette matches MapTrax: #f5efe8 background,
   #b96c28 active accent, 1px #d4c5b0 dividers. */

.multi-select-options {
    background: #f5efe8;
    border: 1px solid #d4c5b0;
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 4px;
}

.multi-select-options.busy {
    opacity: 0.55;
    pointer-events: none;
}

.multi-select-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.multi-select-row:last-child {
    margin-bottom: 0;
}

.multi-select-label {
    flex: 0 0 64px;
    font-size: 11px;
    font-weight: 600;
    color: #6b5536;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.multi-select-tool-group {
    display: flex;
    gap: 4px;
    flex: 1;
}

.multi-select-tool {
    flex: 1;
    padding: 5px 8px;
    font-size: 12px;
    background: #fff;
    color: #5b4a30;
    border: 1px solid #d4c5b0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.multi-select-tool:hover {
    background: #ece2d2;
}

.multi-select-tool.active {
    background: #b96c28;
    color: #fff;
    border-color: #9a5820;
}

#multi-select-hittest {
    flex: 1;
    padding: 4px 6px;
    font-size: 12px;
    background: #fff;
    color: #5b4a30;
    border: 1px solid #d4c5b0;
    border-radius: 4px;
    cursor: pointer;
}

.multi-select-cancel {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    background: #fff;
    color: #5b4a30;
    border: 1px solid #d4c5b0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.12s;
}

.multi-select-cancel:hover {
    background: #ece2d2;
}
