.map-measure-tooltip { 
    background: white;
    border: 1px solid #ff0000;
    padding: 4px 6px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: bold;
    pointer-events: none;
}

.map-measure-tooltip-static {
    background: rgba(255,255,255,0.85);
    border: 1px solid #d33;
}

.map-measure-tooltip-active {
    background: #fff;
}

/* MATCH OL ZOOM BUTTON STYLE */
.measure-panel .measure-btn {
    width: 32px;                 /* same size as OL buttons */
    height: 32px;
    background: white;           /* same background */
    border: 1px solid #ccc;      /* same border */
    border-radius: 2px;          /* same corner radius */
    box-shadow: 0 1px 4px rgba(0,0,0,0.3); /* same shadow */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;             /* icon size */
    transition: background 0.2s;
}

/* HOVER LIKE OL BUTTONS */
.measure-panel .measure-btn:hover {
    background: #f0f0f0;
}

/* REMOVE PANEL BACKGROUND */
.measure-panel {
    position: absolute;
    top: 150px;
    left: 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}
