﻿/* Estilo para o modal */
#mapModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro para contraste */
    z-index: 9999;
}

#mapContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* Para posicionar o botão de fechar */
}

#mapa {
    width: 100%;
    height: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d; /* Vermelho chamativo */
    color: white;
    border: none;
    border-radius: 50%; /* Botão circular */
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .close-btn:hover {
        background: #ff0000; /* Vermelho mais forte ao passar o mouse */
    }
