body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Layout principal */
.camadas-container {
  margin-left: 10px; /* indentação menor */
}

.toggle-btn {
  margin-left: 8px;
  background-color: #0066A2;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
  font-weight: bold;
}

.toggle-btn:hover {
  background-color: #004466;
}


#menu {
  width: 260px;
  background: white;
  overflow-y: auto;
  padding: 10px;
  padding-top: 2px;
  box-sizing: border-box;
}

/* Títulos principais (Camadas disponíveis / Legenda) */
.menu-titulo {
  font-weight: bold;
  background: #02436D;
  color: white;
  padding: 8px;
  border-radius: 8px; 
  margin: 10px 0;
  font-size: 14px;
      text-align: center;

}


.divisao {
  margin-bottom: 15px;
}

/* Checkbox da divisão */
.divisao-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between; /* separa label e botão */
  margin: 2px 0;
  padding: 5px 10px;
  background: #CCE7FF;
  border-radius: 6px;
}

.divisao-checkbox label {
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
  flex: 1; /* ocupa o espaço restante */
}

/* Checkbox das camadas */
.camada {
  display: flex;
  align-items: center;
  margin: 2px 0;
  padding-left: 5px; /* padding interno menor */
}

.camada label {
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
}

/* Cabeçalho */
#header {
  background: #02436D;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
