body {
    margin: 0;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

h2 {
    margin: 20px 0;
}

.map-wrapper {
    position: relative;
    width: 420px;
    margin: auto;
}

.map-wrapper img {
    width: 100%;
    display: block;
}


/* Pins */

.pin {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.green {
    background: #2ecc71;
}

.orange {
    background: #ff7a18;
}


/* Legend */

.legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
    padding: 10px 20px;
    background: #1a1a1a;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}


/* .pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
} */


/* Text label */

.label {
    position: absolute;
    left: 7px;
    /* space from dot */
    top: 50%;
    transform: translateY(-50%);
    font-size: 5px;
    color: #ffffff;
    white-space: nowrap;
    pointer-events: none;
    /* click passes to pin */
}


/* Colors */

.green {
    background: #2ecc71;
}

.orange {
    background: #ff7a18;
}