body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f2f5;
  margin: 0;
  padding: 30px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.filtro-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.filtro-container label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #444;
}

.filtro-container select {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  transition: border-color 0.3s;
}

.filtro-container select:focus {
  outline: none;
  border-color: #007bff;
  background: #fff;
}

#input-area {
  margin-top: 20px;
}

#input-area input {
  padding: 10px 15px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.enderecos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.endereco {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.endereco:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.hidden {
  display: none;
}

@media (max-width: 500px) {
  .enderecos-list {
    justify-content: flex-start;
  }

  .endereco {
    width: 100%;
    text-align: center;
  }
}
