body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

h1 {
  text-align: center;
  padding: 20px;
  background: #004080;
  color: white;
}

#mapa {
  width: 100%;
  height: 90vh;
}

.localizacao-nome {
  color: darkgreen;
  font-weight: bold;
}

.antena-foto {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

#painelStatus {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 260px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 999;
  font-family: Arial, sans-serif;
}

#painelStatus h2 {
  margin-top: 0;
  font-size: 18px;
  color: #004080;
  text-align: center;
}

.status-item {
  margin-bottom: 10px;
  padding: 6px;
  border-radius: 6px;
  background-color: #f9f9f9;
  font-size: 14px;
  line-height: 1.4;
  border-left: 6px solid transparent;
}

.status-ativa {
  border-left-color: green;
}

.status-inativa {
  border-left-color: gray;
}

.status-config {
  border-left-color: orange;
}

.status-item strong {
  display: block;
  font-weight: bold;
}

#painel-status {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 300px;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

#painel-status h2 {
  font-size: 18px;
  color: #004080;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}

.grupo-antena {
  margin-bottom: 20px;
}

.grupo-antena h4 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.grupo-antena ul {
  padding-left: 18px;
  margin: 0;
}

.grupo-antena li {
  margin-bottom: 4px;
  font-size: 14px;
}


