.order-card {
  border: 1px solid #e0d8c8;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: #fffaf3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.order-card h2 {
  margin-top: 0;
  color: #2c1b0c;
  margin-bottom: 0.5rem;
}

.order-items ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed #e0d8c8;
  padding: 0.4rem 0;
}

.order-item:last-child {
  border-bottom: none;
}

.order-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.order-admin-form {
  margin: 0.5rem 0;
}
.btn-small {
  background: #b6894b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
}
.btn-small:hover {
  background: #d2aa67;
}
.delete-btn {
  background: #c0392b;
}
.delete-btn:hover {
  background: #e74c3c;
}
.reserve-btn {
  background: #d4a017;
}
.reserve-btn:hover {
  background: #b38d1a;
}
