* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111827;
  color: white;
  padding: 30px;
}

.container {
  max-width: 900px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: white;
}

.formulario {
  background: #1f2937;
  padding: 20px;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

input, select, button {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

button {
  background: #3632ee;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: black;
}

.filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.lista {
  display: grid;
  gap: 15px;
}

.card {
  background: #1f2937;
  padding: 18px;
  border-radius: 12px;
  border-left: 5px solid black;
}

.card h2 {
  margin-bottom: 8px;
}

.card p {
  margin: 5px 0;
  color: #d1d5db;
}

.acoes {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.acoes button {
  font-size: 13px;
  padding: 8px;
}

.excluir {
  background: #dc2626;
}

.excluir:hover {
  background: #b91c1c;
}
.busca {
    margin-bottom: 20px;
}

.busca input {
    width: 100%;
}