* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #111827, #1e293b);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 700px;
  padding: 20px;
}

.card {
  background: rgba(15, 23, 42, 0.95);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

h1, h2 {
  text-align: center;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 10px;
  outline: none;
}

textarea {
  resize: none;
  height: 80px;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.secondary {
  background: #475569;
}

.danger {
  background: #dc2626;
  width: auto;
}

.hidden {
  display: none;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item {
  background: #1e293b;
  padding: 15px;
  border-radius: 12px;
  margin-top: 12px;
}

.item p {
  margin: 6px 0;
}

.item button {
  margin-right: 5px;
  width: auto;
}

.ver {
  background: #16a34a;
}

.excluir {
  background: #dc2626;
}