﻿.map-container {
    flex: 1;
    padding: 0 24px 24px 8px;
}

#map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 18px;
    background: #1B2435;
    overflow: hidden;
}



/*=========================
    LEYENDA
=========================*/

.map-legend {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #111A2B;
    border: 1px solid #293447;
    border-radius: 14px;
    padding: 18px 20px;
    z-index: 5;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
}

    .legend-item:not(:last-child) {
        margin-bottom: 14px;
    }

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

    .legend-dot.green {
        background: #18D96B;
    }

    .legend-dot.red {
        background: #FF4343;
    }

    .legend-dot.gray {
        background: #777D89;
    }



/*=========================
    CONTROLES
=========================*/

.map-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

    .map-controls button {
        width: 54px;
        height: 54px;
        border: none;
        border-radius: 16px;
        background: #111A2B;
        border: 1px solid #293447;
        color: white;
        font-size: 20px;
        cursor: pointer;
        transition: .2s;
    }

        .map-controls button:hover {
            background: #1A273A;
        }
