/* Estilo geral */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.site-header {
  background-color: #2e3b4e;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.site-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.content {
  padding: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.city-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.city-table th, .city-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.city-table th {
  background-color: #2e3b4e;
  color: white;
}

.city-table td {
  background-color: #fff;
}

.button-approve, .button-reject {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.button-approve {
  background-color: #45a049;
  color: white;
}

.button-approve:hover {
  background-color: #3c8e3c;
}

.button-reject {
  background-color: #c62828;
  color: white;
}

.button-reject:hover {
  background-color: #b71c1c;
}

.footer {
  text-align: center;
  background-color: #2e3b4e;
  color: white;
  padding: 10px 0;
}

