@media screen {
  .barcode-print {
    max-width: 360px;
    margin: 40px auto;
  }
}

.barcode-print {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px;
  border: 1px solid #d7dde8;
  border-radius: 8px;
  background: #fff;
  color: #101828;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  text-align: center;
}

.print-logo-text {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0f766e);
  font-weight: 800;
}

.barcode-print h1 {
  margin: 6px 0 0;
  font-size: 22px;
}

.barcode-print h2 {
  margin: 0;
  font-size: 16px;
  color: #0f766e;
}

.barcode-print p,
.barcode-print small {
  margin: 0;
  color: #475467;
}

.barcode-student-photo {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid #d7dde8;
  border-radius: 16px;
  background: #f8fafc;
  color: #2563eb;
  object-fit: cover;
  font-size: 32px;
  font-weight: 800;
}

.barcode-print-img {
  width: min(100%, 360px);
  height: auto;
  min-height: 86px;
  max-height: 130px;
  object-fit: contain;
}

@media print {
  .barcode-print {
    margin: 0;
    box-shadow: none;
    break-inside: avoid;
  }
}
