/* static/style.css */

/* Estilo para o overlay do mapa */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000; /* Alta prioridade */
}

.overlay .closebtn {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001; /* Alta prioridade para o botão de fechar */
    background: none;
    border: none;
}

.overlay .closebtn:hover {
    color: #ff0000; /* Cor ao passar o mouse */
}

.overlay-content {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50px;
    right: 50px;
    background: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Alta prioridade para o conteúdo do overlay */
}

#map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1001; /* Alta prioridade para o iframe do mapa */
}
