body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 1rem;
  background: #f5f5f5;
}

h1 {
  text-align: center;
}

section {
  background: #fff;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 900px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.inline-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.inline-form input {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input, select, button {
  padding: 0.4rem 0.5rem;
  font-size: 0.9rem;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid #eee;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid #eee;
}

th {
  text-align: left;
  background: #fafafa;
}

td:last-child {
  text-align: right;
}

.delete-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 3px;
}

.chip-delete {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  padding: 0;
}
