      html, body {
        margin: 0;
        padding: 0;
        height: 100%;
      }

        .map {
          width:100%;
          height:100%;
        }

          /* Painel lateral esquerdo */
    .sidebar {
      position: absolute;
      top: 0;
      left: 0;
      width: 315px;
      height:100%;
      background-color: #ffffffcc; /* branco com transparência */
      border-right: 1px solid #ccc;
      padding: 8px;
      padding-top: 60px;
      box-sizing: border-box;
      z-index: 1000;
      font-family: Arial, sans-serif;
    }
    .sidebar h2 {
      margin-top: 0;
      font-size: 18px;
      color: #333;
      padding-top: 10px;
    }

    select {
  height: 40px;
  width: 250px; 
  font-size: 14px;
}

    #layersSelect {
      width: 100%;
      padding: 8px;
      font-size: 14px;
    }
     #legend {
      max-width: 100%;
    }

.infobloco {
  position: absolute;
  bottom: 20px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1000;
  max-width: 300px;       /* Limita a largura */
  max-height: 200px;      /* Limita a altura */
  overflow-y: auto;       /* Rolagem se o conteúdo ultrapassar a altura */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Visual mais elegante */
}
     .infobloco h2 {
      margin-top: 0;
      font-size: 18px;
      color: #333;
    }

    #info {
      font-size: 14px;
      font-family: Arial, sans-serif;

    }

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #1E4E79;
  color: white;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  justify-content: space-between;
}

.logo {
  margin-left: 12px;
  height: 36px;
  margin-right: 12px;
}

.navbar-title {
  font-size: 18px;
  font-weight: bold;
  flex: 1;
}

.navbar-links {
  display: flex;
  gap: 16px;
  padding-right: 20px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #D4AF37; /* dourado no hover */
}

.dadoslegenda {
  list-style-type: none;
  padding-left: 0; /* opcional: remove o recuo padrão */
  margin: 0;        /* opcional */
}

.em-breve {
  color: #ffeb3b; /* amarelo vibrante */
  font-size: 10px;
  text-shadow: 0 0 6px #fff176, 0 0 10px #ffc107;
  font-weight: bold;
  margin-left: 2px;
}


/* Conteudo expansivel */
.collapsible {
      cursor: pointer;
      display: flex;
      align-items: center;
      font-size: 18px;
      border: none;
      background: none;
      outline: none;
    }

    .icon {
      font-weight: bold;
      margin-right: 8px;
      width: 20px;
      display: inline-block;
      text-align: center;
    }

.content-selectbox {
      display: none;
      margin-left: 28px;
      padding: 8px 0;
    }

