body {
    font-family: sans-serif;
    margin: 0;
}
h2 {
  font-size: 2.25rem;
  color: #333;
  text-align: center;
  margin-bottom: 0.5rem;
}
.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}
input, textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}
textarea {
  resize: none;
}
.toggle-btn {
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  cursor: pointer;
  background: #f0f0f0;
}
.toggle-btn.active {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}
.product-list {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.product-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 0.3rem;
}
.product-item label {
  flex-grow: 1;
}
.actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
}
.btn.cancel {
  background: #e5e5e5;
  color: #333;
}

.btn.create {
  background: #dc2626;
  color: #fff;
}