.printers-layout {
  align-items: start;
}

.card-form-head {
  align-items: start;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.printer-form h3 {
  font-size: 18px;
}

.check-field {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
}

.check-field input {
  accent-color: #f97316;
  height: 18px;
  width: 18px;
}

.printer-actions {
  flex-wrap: wrap;
}

.printer-preview-card {
  min-width: 0;
}

.label-preview-svg {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.printer-list {
  display: grid;
}

.printer-row {
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 18px;
  text-align: left;
  width: 100%;
}

.printer-row:hover,
.printer-row.active {
  background: #fff7ed;
}

.printer-row strong,
.printer-row small {
  display: block;
}

.printer-row small {
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.printer-history {
  margin-top: 18px;
}

.print-job-row {
  grid-template-columns: 1fr 1.2fr .5fr .7fr 1.8fr;
}

@media (max-width: 960px) {
  .printers-layout {
    grid-template-columns: 1fr;
  }

  .print-job-row {
    grid-template-columns: 150px 180px 80px 120px 260px;
  }
}
