* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  color: #1f2937;
}

.container {
  width: min(1100px, 92%);
  margin: 40px auto;
  display: grid;
  gap: 24px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

h1,
h2 {
  margin-top: 0;
}

form {
  display: grid;
  gap: 10px;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

button {
  border: 0;
  padding: 11px 18px;
  border-radius: 8px;
  cursor: pointer;
  background: #2563eb;
  color: white;
}

button.secondary {
  background: #64748b;
}

button.edit {
  background: #d97706;
}

button.delete {
  background: #dc2626;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

#mensaje {
  min-height: 24px;
  font-weight: bold;
}
