
/* LotDone v0.5.6 supplemental styles.
   This file adds bulk-edit controls without replacing the user's existing theme. */

.bulk-edit-bar {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 8px;
  padding: 12px 14px;
  border: 1px solid rgba(179,132,28,.55);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 16px rgba(0,0,0,.06);
}
.bulk-select-visible {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.bulk-select-visible input { width: 18px; height: 18px; accent-color: #C99B2F; }
.bulk-selection-count {
  min-width: 86px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #111;
  background: rgba(212,175,55,.16);
  font-size: 12px;
  text-align: center;
}
.bulk-consignor-field {
  flex: 1 1 210px;
  min-width: 180px;
}
.bulk-consignor-field > span {
  display: block;
  margin-bottom: 5px;
  color: #5A5A5A;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.bulk-consignor-field input {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid #B9B9B9;
  border-radius: 10px;
  color: #111;
  background: #fff;
}
.bulk-helper { margin: 0 0 14px; }

.review-card-selectable { position: relative; }
.review-card-open {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.bulk-lot-checkbox {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.28);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  cursor: pointer;
}
.bulk-lot-checkbox input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: #C99B2F;
  cursor: pointer;
}
.review-card.bulk-selected {
  outline: 3px solid #D4AF37;
  outline-offset: 1px;
  box-shadow: 0 0 0 1px #111, 0 8px 24px rgba(0,0,0,.10);
}

@media (prefers-color-scheme: dark) {
  .bulk-edit-bar {
    color: #F5F6F7;
    background: rgba(18,24,32,.96);
  }
  .bulk-consignor-field > span { color: #B8C0C8; }
  .bulk-consignor-field input {
    color: #F7F7F7;
    border-color: #4B5563;
    background: #111820;
  }
}

@media (max-width: 620px) {
  .bulk-edit-bar { align-items: stretch; }
  .bulk-consignor-field { flex-basis: 100%; }
  .bulk-edit-bar .primary-small,
  .bulk-edit-bar .secondary-button { flex: 1 1 auto; }
}
