body {
  background-color: #f5f6fa;
}

.card {
  border: none;
}

.table td,
.table th {
  vertical-align: middle;
}

.image-drop-zone {
  position: relative;
  border: 2px dashed #ced4da;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  background-color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.image-drop-zone.is-dragover,
.image-drop-zone:hover {
  border-color: #0d6efd;
  background-color: #f8f9ff;
}

.image-drop-zone:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.image-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.image-drop-zone__prompt {
  color: #6b7280;
}

.image-drop-zone.has-image .image-drop-zone__prompt {
  display: none;
}

.image-drop-zone img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.icon-dropzone {
  position: relative;
  border: 2px dashed #ced4da;
  border-radius: 12px;
  padding: 0.75rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.icon-dropzone:hover,
.icon-dropzone.is-dragover {
  border-color: #0d6efd;
  background-color: #f8f9ff;
}

.icon-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.icon-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
}

.icon-preview img {
  max-width: 64px;
  max-height: 64px;
  border-radius: 8px;
  display: block;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.icon-placeholder {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
}

.product-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.client-picker__options {
  max-height: 260px;
  overflow-y: auto;
}

.client-picker__options .list-group-item {
  cursor: pointer;
}

.client-picker__options .list-group-item.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
