.prescription-header h1 {
  font-size: 40px;
}
.heading-table-qr {
  display: flex;
  gap: 1rem;
}
.qr-code img {
  width: 70px;
}
.prescription-header table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}

.prescription-header table,
.prescription-header table td {
  border: 1px solid black;
  padding: 5px 10px;
}

.vitals {
  background-color: #8a1e6130;
  padding: 5px;
  display: flex;
  /* justify-content: space-between; */
  gap: 10px;
  row-gap: 5px;
  flex-wrap: wrap;
}

.vital {
  /* background-color: #8a1e6130; */
  padding: 1px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
}
.vital p {
  font-size: 10px;
}

.prescription-main-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  row-gap: 0.7rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.medication-list {
  font-size: 0.8rem;
  padding-left: 1.5rem;
}

.medication-list li {
  margin-bottom: 0.5rem;
}

.additional-note {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.doctor-name {
  font-size: 16px;
  font-weight: 600;
}
.signature {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  align-self: end;
  justify-content: end;
  height: 100%;
}
.note {
  font-size: 0.8rem;
}
.note pre {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
}
.main-body {
  border-left: 1px solid rgba(0, 0, 0, 0.486);
  padding-left: 1rem;
}
