/* ===== Reset básico ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 20px;
}

/* ===== Controles e filtros ===== */
.filtros, .regiao {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

select, button {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
  transition: border-color 0.2s;
}

select:focus, button:focus {
  outline: none;
  border-color: #0078d4;
}

button {
  background-color: #0078d4;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #005ea0;
}

/* ===== Tabela ===== */
#tabela {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#tabela thead {
  background-color: #0078d4;
  color: #fff;
}

#tabela th, #tabela td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
}

#tabela tbody tr:nth-child(even) {
  background-color: #f9fbfd;
}

#tabela tbody tr:hover {
  background-color: #e6f2fb;
  transition: background-color 0.2s ease-in-out;
}

/* ===== Imagens ===== */
#tabela img {
  max-width: 50px;
  height: auto;
  display: block;
  margin: 0 auto;
}

  }
}
