:root {
  --primary-pink: rgb(248, 56, 160);
  --entree-color: rgb(248, 120, 0);
  --side-color: rgb(0, 168, 120);
  --drink-color: rgb(0, 149, 248);
  --dessert-color: rgb(220, 214, 247);
  --accompaniment-color: rgb(94, 252, 141);
}

.clear-button {
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: black;
  cursor: pointer;
}

.error {
  color: darkred;
}

.success {
  color: green;
}

.DEBUG-HIDE {
  display: none;
}

@font-face {
  font-family: "Nunito";
  src: url("/lib/fonts/Nunito/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("/lib/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: "Autumn Days Clipart";
  src: url("/lib/fonts/AutumnDays-Clipart.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Autumn Days Regular";
  src: url("/lib/fonts/AutumnDays-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AutumnLeaves";
  src: url("/lib/fonts/AutumnLeaves.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Christmas Carol";
  src: url("/lib/fonts/ChristmasCarolStarPersonalRegular-1G090.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Grinch Snow";
  src: url("/lib/fonts/GrinchSnow-ovyEV.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Navidad";
  src: url("/lib/fonts/Nunito/Navidad-ERJj.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Creepsville";
  src: url("/lib/fonts/RW-creepsville.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Tenderleaf";
  src: url("/lib/fonts/TenderleafRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: rgb(51, 51, 51);
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
}

.debug-button {
  position: fixed;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 1000;
}
.debug-button:hover {
  opacity: 0.8;
}

.controls {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: #4a0000;
  padding: 10px;
  border-radius: 4px;
  width: 200px;
}

.debug-panel {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 4px;
  z-index: 1000;
  width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  font-family: monospace;
  white-space: pre;
}
.debug-panel pre {
  margin: 0;
}

.content {
  background-color: white;
  width: 8.5in;
  min-height: 11in;
  margin: 50px auto 0;
}
.content .page {
  padding: 0.5in 0in 0.5in 0in;
  width: 100%;
  height: 11in;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}
.content .page.debug {
  background-color: pink;
}
.content .page.debug .column.left {
  background-color: lightgreen;
}
.content .page.debug .column.center {
  background-color: lightcoral;
}
.content .page.debug .column.right {
  background-color: lightblue;
}
.content .page .column {
  height: 10in;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  background-color: white;
}
.content .page .column.left {
  border-left: 0.09375in solid white;
  width: 2.875in;
  padding-left: 0;
}
.content .page .column.left .label {
  border-left-width: 0.09375in;
  border-style: solid;
  margin-left: 0;
  border-right-width: 0.0625in;
}
.content .page .column.center {
  width: 2.75in;
}
.content .page .column.center .label {
  border-style: solid;
  border-left-width: 0.0625in;
  border-right-width: 0.0625in;
}
.content .page .column.right {
  width: 2.875in;
  border-right: 0.09375in solid white;
}
.content .page .column.right .label {
  border-right-width: 0.09375in;
  border-style: solid;
  border-left-width: 0.0625in;
  margin-right: 0;
}
.content .page .column .label {
  position: relative;
  height: 1in;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: rgb(248, 56, 160);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(248, 56, 160);
}
.content .page .column .label.debug {
  border-color: black;
}
.content .page .column .label .label-top {
  position: absolute;
  top: 6px;
  left: -0.09375in;
  width: 2.78125in;
  box-sizing: border-box;
  background: black;
  color: white;
  padding: 2px 5px 2px 18px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
}
.content .page .column .label .label-body {
  flex: 1;
  padding: 0.05in 0.05in 0.05in 0.1in;
  display: flex;
  flex-direction: column;
  position: relative;
}
.content .page .column .label .label-body .recipe-name {
  margin-top: 30px;
  font-size: 14px;
  font-weight: bold;
}
.content .page .column .label .label-body .sides {
  font-size: 12px;
  color: #333;
}
.content .page .column .label .qr-container {
  position: absolute;
  right: 0.1in;
  top: 0.28in;
  border-radius: 5px;
  z-index: 2;
}

.copy-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}
.copy-btn:hover {
  background: #f5f5f5;
}
.copy-btn:active {
  background: #e5e5e5;
}

@media print {
  body * {
    visibility: hidden;
  }
  .content, .content * {
    visibility: visible;
  }
  .content {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
}/*# sourceMappingURL=food-labels.css.map */