.aurora-batch-upload {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid rgba(8, 115, 84, .14);
  border-radius: 8px;
  background: #f8fcfa;
  color: #064235;
}

.aurora-batch-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.aurora-batch-upload-title {
  display: grid;
  gap: 3px;
}

.aurora-batch-upload-title strong {
  color: #064235;
  font-size: .96rem;
}

.aurora-batch-upload-title span {
  color: #087354;
  font-size: .78rem;
  font-weight: 850;
}

.aurora-batch-upload-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.aurora-batch-upload input[type="date"] {
  width: 150px;
  min-height: 38px;
  border: 1px solid rgba(8, 115, 84, .2);
  border-radius: 8px;
  background: #fff;
  color: #064235;
  padding: 0 10px;
  font-weight: 850;
}

.aurora-batch-upload input[type="file"] {
  display: none;
}

.aurora-batch-upload button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(8, 115, 84, .2);
  border-radius: 8px;
  background: #e5f8ef;
  color: #064235;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.aurora-batch-upload button:hover {
  background: #d8f3e8;
}

.aurora-batch-upload button:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.aurora-batch-drop {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(8, 115, 84, .35);
  border-radius: 8px;
  background: #ffffff;
  color: #087354;
  font-size: .8rem;
  font-weight: 900;
  text-align: center;
  padding: 10px;
}

.aurora-batch-drop.active {
  border-color: #087354;
  background: #e5f8ef;
}

.aurora-batch-results {
  display: grid;
  gap: 6px;
  max-height: 180px;
  overflow: auto;
}

.aurora-batch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8, 115, 84, .1);
  font-size: .78rem;
  font-weight: 850;
}

.aurora-batch-row span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aurora-batch-row small {
  color: #087354;
  font-weight: 950;
}

.aurora-batch-row.error small {
  color: #b91c1c;
}

.aurora-batch-empty {
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff7e6;
  color: #92400e;
  font-size: .78rem;
  font-weight: 900;
}
