/* --- CONFIGURAÇÕES GERAIS --- */
body, html { 
    height: 100%; 
    margin: 0; 
    overflow: hidden; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.leaflet-container img { max-width: none !important; }
.leaflet-container { z-index: 1; }

#map { 
    height: 100%; 
    width: 100%; 
    background-color: #e5e9ec; 
    touch-action: pan-y; 
}

/* --- SIDEBAR --- */
.sidebar {
    height: 100vh;
    overflow-y: auto;
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    padding: 20px;
    z-index: 2000; 
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.gleba-item {
    background: white;
    border-left: 4px solid #0d6efd; 
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.gleba-item:hover { 
    background: #e9ecef; 
    transform: translateX(3px); 
}

.gleba-item .btn-group {
    background: white;
    border-radius: 4px;
}

/* --- ÍCONE DE PONTO (GLEBA) --- */
.custom-pin-icon {
    background: transparent;
    border: none;
}

/* --- EDIÇÃO: NUMERAÇÃO DOS VÉRTICES (CORRIGIDO) --- */
.vertex-label {
    /* Aparência da bolinha preta */
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%; /* Redondo */
    
    /* Texto */
    font-size: 10px;
    font-weight: bold;
    font-family: sans-serif;
    
    /* Alinhamento do texto DENTRO da bolinha */
    text-align: center;
    line-height: 18px; /* Igual à altura para centralizar verticalmente */
    
    /* Importante para não bloquear o clique no vértice */
    pointer-events: none !important;
    
    /* Garante prioridade visual */
    z-index: 10002 !important; 
}

/* --- EDIÇÃO: MARCADORES (BOLINHAS DE ARRASTAR) --- */
.leaflet-editing-icon {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important; 
    background-color: #ffffff !important; 
    border: 2px solid #0d6efd !important; 
    margin-top: -6px !important;  
    margin-left: -6px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
}

.leaflet-editing-icon:hover {
    background-color: #ffc107 !important;
    transform: scale(1.3);
}

/* Vértices Fantasmas */
.leaflet-editing-icon-touch {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #0d6efd !important;
    width: 10px !important;
    height: 10px !important;
    margin-top: -5px !important;
    margin-left: -5px !important;
    border-radius: 50% !important;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .sidebar { 
        height: 40vh; 
        position: absolute; 
        bottom: 0; 
        width: 100%; 
        border-top: 3px solid #0d6efd;
        z-index: 3000;
        padding: 10px;
    }
    #map { height: 60vh; }
    .gleba-item .btn-group .btn { padding: 8px; font-size: 0.8rem; }
}