html, body {
    margin: 0;
    font-family: sans-serif;
    background-color: #e8f5e9 !important; 
}

.mapa-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px;
    height: calc(100vh - 80px);
}

h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    margin-left: 6px;
    font-size: 28;
}

#mapa-container {
    flex: 2;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: #2e7d32 solid 2px;
}


#lista-proximos {
    flex: 1;
    height: 95%;
    overflow-y: auto;
    background: #F5F2EB;
    border-radius: 8px;
    border: #2e7d32 solid 2px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


#lista-proximos h3 {
    font-size: 18px;
    color: #2e7d32;
    margin-bottom: 8px;
}


.ponto-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #4caf50;
    cursor: pointer;
    transition: box-shadow 0.2s;
}


.ponto-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


.ponto-card .nome { font-weight: bold; font-size: 14px; }
.ponto-card .distancia { color: #4caf50; font-size: 13px; margin: 4px 0; }
.ponto-card .tipo { font-size: 12px; color: #666; }


#btn-localizar {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}


#btn-localizar:hover { background: #1b5e20; }


#status-localizacao {
    font-size: 12px;
    color: #888;
    margin-top: 7px;
    text-align: center;
}

.topo-mapa {
    display: flex;
    justify-content: space-between; /* um em cada lado */
    align-items: center;
    padding: 20px;
}

#btn-add-ponto {
    padding: 14px 14px;
    background:#2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s ease;
    text-decoration: none;
}

#btn-add-ponto:hover { background: #1b5e20; }