body {
  font-family: sans-serif;
  margin: 20px 40px;
  color: #333;
}

.form-row {
  margin-bottom: 15px;
}

input[type="text"], input[type="number"], textarea {
  width: 300px;
  padding: 5px;
}

.type-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.type-row label:first-child {
  margin-right: 50px;
}

button {
  padding: 5px 15px;
  cursor: pointer;
}

hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 20px;
  margin-bottom: 20px;
}

.preview-container img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.queue-container {
  min-height: 50px;
}

.queue-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  width: 400px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background: #f4f4f4;
}

td input[type="text"], td input[type="number"] {
  width: 90%;
}