:root {
  --bg-color: #000;
  --text-color: #fff;
  --clock-countdown-color: hsl(0, 80%, 44%);
  --border-color: #ccc;
  --button-text-color: #000;
  --overlay-bg: rgba(0, 0, 0, 1);
  --table-border: #444;

  --now-color: rgb(235, 63, 0);
  --next-color: hsl(141, 49%, 47%);

  --off-white: hsl(0, 0%, 90%);
  --off-whiter: hsl(0, 0%, 71%);
  --off-whiterer: hsl(0, 0%, 32%);

  --almost-black: hsl(0, 0%, 6%);

  --warning-color: hsl(39, 92%, 45%);
  --warning-color-black: hsl(39, 92%, 10%);
  --critical-color: hsl(356, 75%, 47%);
  --ahead-color: #20c9c3;
  --behind-color: #FF8800;

/** Dark theme primary colors */
--clr-primary-a0: #7bb0c5;
--clr-primary-a10: #8ab9cb;
--clr-primary-a20: #99c1d2;
--clr-primary-a30: #a8cad8;
--clr-primary-a40: #b7d3df;
--clr-primary-a50: #c5dbe5;

/** Dark theme surface colors */
--clr-surface-a0: #000000;
--clr-surface-a10: #1e1e1e;
--clr-surface-a20: #353535;
--clr-surface-a30: #4e4e4e;
--clr-surface-a40: #696969;
--clr-surface-a50: #858585;

/** Dark theme tonal surface colors */
--clr-surface-tonal-a0: #121617;
--clr-surface-tonal-a10: #282b2c;
--clr-surface-tonal-a20: #3f4243;
--clr-surface-tonal-a30: #575a5b;
--clr-surface-tonal-a40: #717374;
--clr-surface-tonal-a50: #8b8d8e;
}

/* Reset / Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

html,
body {
  color: var(--text-color);
  font-family: Open-Sans, Arial, sans-serif;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

h3 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 30px;
}

p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 45ch;
}

a {
  color: var(--clr-primary-a0);
  font-weight: 700;
  text-decoration: none;
}

.topMenu {
  align-items: center;
  background-color: var(--bg-color);
  display: flex;
  justify-content: space-between;
  padding: 1.4rem;
}

.brandLink {
  align-items: center;
  color: var(--text-color);
  display: inline-flex;
  font-size: 1.7rem;
  font-weight: 800;
  gap: 10px;
}

.brandLink img {
  height: 28px;
  width: 28px;
}

.topMenuRight {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.topMenuNav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.topMenuNav a {
  color: var(--text-color);
  font-weight: 600;
  transition: 300ms ease-in-out;
}

.topMenuNav a:hover,
.topMenuNav a:focus-visible {
  color: var(--clr-primary-a10);
  outline: none;
}

.accountMenu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 52px;
}

.accountTextButton {
  background: transparent;
  border: 0;
  color: var(--text-color);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  transition: color 200ms ease-in-out;
}

.accountTextButton:hover,
.accountTextButton:focus-visible {
  color: var(--clr-primary-a10);
  outline: none;
}

.accountModalBackdrop {
  align-items: center;
  background: rgba(0, 0, 0, .78);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.accountModalBackdrop[hidden] {
  display: none;
}

.accountModalPanel {
  background: var(--clr-surface-tonal-a0);
  border: 1px solid var(--clr-surface-a30);
  border-radius: 8px;
  max-width: 620px;
  min-height: 360px;
  padding: 32px;
  width: min(100%, 620px);
}

.accountModalHeader {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.accountModalHeader h2 {
  margin-bottom: 0;
}

.accountModalClose {
  background: transparent;
  border: 1px solid var(--clr-surface-a40);
  border-radius: 4px;
  color: var(--text-color);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 10px;
}

.accountModalClose:hover,
.accountModalClose:focus-visible {
  border-color: var(--clr-primary-a20);
  color: var(--clr-primary-a20);
  outline: none;
}

.accountModalLabel {
  color: var(--off-whiter);
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.accountModalEmail {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

.accountModalActions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.accountModalSecondaryActions {
  display: flex;
  justify-content: flex-end;
  margin-top: 88px;
}

.accountDeleteTextButton {
  background: transparent;
  border: 0;
  color: var(--critical-color);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: 4px 0;
}

.accountDeleteTextButton:hover,
.accountDeleteTextButton:focus-visible {
  color: hsl(356, 85%, 62%);
  outline: none;
  text-decoration: underline;
}

.sheetOverviewHeader {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.sheetCreateForm {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, .7fr) minmax(160px, .6fr) minmax(260px, 1.2fr) auto;
  margin-bottom: 28px;
}

.sheetCreateForm label,
.runSheetEditForm label {
  color: var(--off-white);
  display: grid;
  font-weight: 700;
  gap: 8px;
}

.sheetCreateForm input,
.runSheetEditForm input {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 1rem;
  padding: 12px;
}

.runSheetList {
  display: grid;
  gap: 14px;
  margin-bottom: 140px;
}

.runSheetItem {
  align-items: center;
  background: var(--clr-surface-a10);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 22px;
}

.runSheetItemDetails h3 {
  margin-bottom: 6px;
}

.runSheetItemDetails p {
  color: var(--off-whiter);
  margin-bottom: 10px;
  max-width: 70ch;
}

.runSheetMeta {
  color: var(--off-whiterer);
  font-size: .9rem;
  font-weight: 700;
}

.runSheetUrlName {
  color: var(--clr-primary-a20);
  display: block;
  margin-bottom: 8px;
}

.runSheetActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.runSheetActions a {
  display: inline-block;
}

.emptyRunSheets {
  color: var(--off-whiter);
}

.runSheetEditItem {
  align-items: stretch;
}

.runSheetEditForm {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(180px, .7fr) minmax(160px, .6fr) minmax(260px, 1.2fr) auto;
  width: 100%;
}

.billingPanel {
  background: var(--clr-surface-a10);
  border-radius: 8px;
  margin-bottom: 32px;
  padding: 24px;
}

.billingHeader {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.billingHeader p {
  color: var(--off-whiter);
  margin-bottom: 0;
}

.billingStatus {
  color: var(--next-color);
  font-weight: 700;
  margin-top: 12px;
  min-height: 1.4rem;
}

.billingStatus.isError {
  color: var(--critical-color);
}

.pricingPlanList {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricingPlan {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a30);
  border-radius: 8px;
  padding: 18px;
}

.pricingPlan.current {
  border-color: var(--next-color);
}

.pricingPlan h3 {
  margin-bottom: 8px;
}

.pricingPlanPrice {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricingPlan p {
  color: var(--off-whiter);
  margin-bottom: 18px;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
}

/* End Global Styles and Variables*/

.bigBtn{
  width: 100%;
  height: 100%;
}

.controlWrapper{
  height: 100%;
  padding: 2rem;
}

.authBody {
  min-height: 100%;
}

.authShell {
  align-items: stretch;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  min-height: 100%;
  padding: 8vh 8vw;
}

.authIntro {
  align-self: center;
}

.authLogo {
  height: 72px;
  margin-bottom: 24px;
  width: 72px;
}

.authIntro h1 {
  font-family: Poppins, sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 24px;
}

.authIntro p {
  color: var(--off-white);
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.authForms {
  align-self: center;
  background: var(--clr-surface-a10);
  border-radius: 8px;
  padding: 32px;
}

.authStatus {
  color: var(--next-color);
  margin-bottom: 24px;
  min-height: 1.5rem;
}

.authStatus.isError {
  color: var(--critical-color);
}

.authFormBlock + .authFormBlock {
  border-top: 1px solid var(--clr-surface-a30);
  margin-top: 32px;
  padding-top: 32px;
}

.authFormBlock form {
  display: grid;
  gap: 18px;
}

.authFormBlock label {
  color: var(--off-white);
  display: grid;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
}

.authFormBlock input {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 1.05rem;
  padding: 12px;
}

.authFormBlock button {
  justify-self: start;
}

/* START FLEX RULES */
.flex {
  display: flex;
}

.flexEnd {
  justify-content: flex-end;
}

.flex.column {
  flex-direction: column;
}

.flex.gap1Rem {
  gap: 1rem;
}
.flex.gap3Rem {
  gap: 3rem;
}

.spaceBetween {
  justify-content: space-between;
}

.clockAndCon > div{
  flex: 1;
}
/* END FLEX RULES */

.footer {
  background-color: var(--bg-color);
  padding: 2rem 3rem 2rem 3rem;
  text-align: right;
}

.modal.displayNone{
  display: none;
}


/* Center text if needed for certain elements */
.center-text {
  text-align: center;
}

/* Clock  styling */
#clock {
  font-weight: bold;
  font-family: Azeret Mono, Arial sans-serif;
}

.clockMedium {
  font-size: 10rem;
}

.clockSmall {
  font-size: 5rem;
  font-weight: bold;
  font-family: Azeret Mono, Arial sans-serif;
}

.offWhite {
  color: var(--off-white);
}

.offWhiter {
  color: var(--off-whiter);
}

/* Countdown styling */
#countdown {
  font-size: 17vw;
  font-weight: bold;
  color: var(--clock-countdown-color);
  font-family: Azeret Mono, Arial sans-serif;
}

.bottomMarginMedium {
  margin-bottom: 2rem;
}

.nextItemLine {
  font-size: 2rem;
  color: var(--next-color);
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.currentItemLine {
  font-size: 2rem;
  color: var(--now-color);
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.clockItemLine {
  font-size: 2rem;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.td {
  font-size: 3rem;
}

.maxWidth50 {
  max-width: 40%;
}

.viewerStyle {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.noteContainer {
  background-color: var(--clr-surface-a10);
  padding: 22px;
  border-radius: 8px;
  height: 100%;
}

.noteContainer h3 {
  color: var(--now-color);
}

.countdownStyle {
  font-size: 2.5rem;
}

.countViewHidden {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.almostBlackBg {
  background-color: var(--almost-black);
}

.blackBg {
  background-color: #000;
}

/* Producer Container */
.producerContainer {
  gap: 4rem;
  margin: 0 auto;
  width: 90vw;
  margin-bottom: 90px;
}
/* Control Container */
.controlContainer {
  gap: 4rem;
  margin: 0 auto;
  width: 100%;
  place-items: center;
  display: grid;
}

.globalTopMargin {
  padding-top: 90px;
}

.producerContainer .right {
  width: 100%;
}

.right .button-row {
  margin-bottom: 20px;
}

.hib .button-row {
  margin-bottom: 20px;
}

/* Message Controls + Countdown Controls */
.message-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Message Controls */
.message-controls {
  margin-bottom: 40px;
}

/* Slight border around textarea */
textarea#messageInput {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  resize: vertical;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 160px;
  font-size: 1.6rem;
}

.button-row {
  display: flex;
  gap: 1rem;
}

.button-row button {
  min-width: 90px;
}

/* Default button styling */
.btn {
  border: 0px;
  border-radius: 4px;
  padding: 0.7rem 1.3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-weight: bold;
}

.primaryBtn {
  background-color: var(--clr-primary-a20);
  color: var(--clr-surface-tonal-a0);
}

.secondaryBtn {
  color: var(--clr-surface-tonal-a0);
  /* border: 1px solid var(--clr-primary-a20); */
  background-color: var(--clr-surface-tonal-a50);
}

.warningBtn {
  background-color: var(--warning-color);
  color: var(--warning-color-black);
}

.criticalBtn {
  background-color: var(--critical-color);
}

/* Overlay for messages */
.overlayFull {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 10;
}

/* Use this style to display the message as a strip along the bottom */
.overlayBottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: hsl(0, 0%, 1%);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 10;
  padding-left: 30px;
}

/* This #ID referenced in code */
#overlayMessage {
  font-size: 5rem;
  color: var(--text-color);
  padding: 20px;
  max-width: 80%;
  word-wrap: break-word;
}

#overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modalContent {
  background: var(--clr-surface-tonal-a0);
  padding: 30px;
  border-radius: 8px;
  /* border: 2px solid var(--clr-primary-a20); */
  max-width: 90%;
  max-height: 90%;
  min-width: 30%;
}

/* START TABLE STYLING */
.prodTable,
.showTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

/* First column: row numbers */
.prodTable th:first-child,
.prodTable td:first-child,
.showTable th:first-child,
.showTable td:first-child {
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  width: 3em;
  transition: 400ms ease-in-out;
}

.prodTable th:first-child{
  font-weight: 600;
}

.prodTable .row-number {
  cursor: grab;
  user-select: none;
}

.prodTable .row-number:active {
  cursor: grabbing;
}

.scheduleFooter {
  align-items: center;
  color: var(--off-white);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.saveStatus {
  color: var(--off-whiter);
  font-size: .95rem;
  font-weight: 700;
  margin-left: 16px;
}

/* Title/Presenter: left aligned */
#scheduleTable td:nth-child(2),
#scheduleTable td:nth-child(3) {
  text-align: left;
}

/* Times and duration: right aligned */
#scheduleTable td:nth-child(4),
#scheduleTable th:nth-child(4),
#scheduleTable td:nth-child(5),
#scheduleTable th:nth-child(5),
#scheduleTable td:nth-child(6),
#scheduleTable th:nth-child(6) {
  text-align: right;
  width: 90px;
}

.showTable td:nth-child(4),
.showTable th:nth-child(4),
.showTable td:nth-child(5),
.showTable th:nth-child(5),
.showTable td:nth-child(6),
.showTable th:nth-child(6) {
  min-width: 10ch;

}

/* Table title & presenter: fixed widths */
#scheduleTable th:nth-child(2) {
  min-width: 250px;
}

#scheduleTable th:nth-child(3) {
  min-width: 120px;
}

/* Row styling */
.prodTable tbody tr {
  height: 58px;
  background-color: black;
}

.showTable tbody tr {
  height: 58px;
}

.showTable tbody tr {
  border-bottom: 1px solid var(--clr-surface-a20);
}

.prodTable tbody tr:nth-of-type(even) {
  background-color: var(--clr-surface-a10);
}

/* Header styling */
.prodTable th,
.showTable th {
  text-align: left;
  font-weight: 500;
  background-color: var(--clr-surface-a20);
  height: 60px;
  text-transform: uppercase;
}

/* Rounded corners for table header */
#scheduleTable thead th:first-child {
  border-top-left-radius: 4px;
}

#scheduleTable thead th:last-child {
  border-top-right-radius: 4px;
}

/* Hide tech notes when .showHtml is applied */
.showHtml #scheduleTable th:nth-child(7),
.showHtml #scheduleTable td:nth-child(7) {
  display: none;
}

/* Active row styling */
.active-row-num {
  position: relative;
  z-index: 2;
  background-color: var(--now-color);
}
/*
.active-row-num::after {
  content: "";
  width: 70%;
  height: 70%;
  background-color: var(--now-color);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
} */

/* Add left padding to data columns */
.showTable th:nth-child(2),
.showTable td:nth-child(2),

.showTable th:nth-child(3),
.showTable td:nth-child(3),

.showTable th:nth-child(4),
.showTable td:nth-child(4),

.showTable th:nth-child(5),
.showTable td:nth-child(5),

.showTable th:nth-child(6),
.showTable td:nth-child(6),

.showTable th:nth-child(7),
.showTable td:nth-child(7),

.showTable th:nth-child(8),
.showTable td:nth-child(8),

.prodTable th:nth-child(2),
.prodTable td:nth-child(2),

.prodTable th:nth-child(3),
.prodTable td:nth-child(3),

.prodTable th:nth-child(4),
.prodTable td:nth-child(4),

.prodTable th:nth-child(5),
.prodTable td:nth-child(5),
.prodTable th:nth-child(6),
.prodTable td:nth-child(6),
.prodTable th:nth-child(7),
.prodTable td:nth-child(7),
.prodTable th:nth-child(8),
.prodTable td:nth-child(8) {
  padding-left: 15px;
}


.prodTable th:nth-child(4),
.showTable th:nth-child(4),
.showTable td:nth-child(4),
.prodTable td:nth-child(4),
.prodTable th:nth-child(5),
.showTable th:nth-child(5),
.showTable td:nth-child(5),
.prodTable td:nth-child(5),
.prodTable th:nth-child(6),
.showTable th:nth-child(6),
.showTable td:nth-child(6),
.prodTable td:nth-child(6) {
  padding-right: 1rem;
}

/* END TABLE STYLING */

.infoContainer {
  display: flex;
  gap: 1rem;
  height: 100%;
}

.infoContainer .left {
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  flex-grow: 1;
  min-width: 75%;
}

.infoContainer .right {
  font-size: 2rem;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.leftPaddingMedium {
  padding-left: 26px;
}

.rightPaddingMedium {
  padding-right: 26px;
}

.topPaddingSmall {
  padding-top: 16px;
}

.bottomPaddingSmall {
  padding-bottom: 16px;
}

.topPaddingMedium {
  padding-top: 22px;
}

.bottomPaddingMedium {
  padding-bottom: 20px;
}

.wrapper {
  width: 90vw;
  margin: 0 auto;
}

.fullWidth{
  padding-top: 70px;
}

.borderContainer {
  border-radius: 8px;
  background-color: var(--clr-surface-a10);
  flex-grow: 1;
}

.borderContainerOutline {
  border-radius: 8px;
  border: 5px solid var(--clr-surface-a10);
}

.currentCentered {
  max-width: 100%;
  min-width: 60%;
  display: inline-block;
  min-height: 18rem;
}

.nextUpCentered {
  max-width: 100%;
  display: inline-block;
}

.hiii {
  font-size: 3rem;
  /* Remove if not used */
}

.shortCut {
  /* background-color: var(--clr-surface-a10); */
  border: solid 2px var(--clr-surface-a30);
  padding: 6px 8px 6px 8px;
  border-radius: 4px;
  margin-right: 10px;
  color: var(--off-white);
  font-weight: 600;
}

.shortCutContainer{
  padding-bottom: 80px;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 22px;
}

.aheadLabel{
  color: var(--off-whiterer);
}

.behindLabel{
  color: var(--off-whiterer);
}

.aheadLabel.active{
  color: var(--ahead-color);
}

.behindLabel.active{
  color: var(--behind-color);
}

@media screen and (max-width: 1080px) {

  .authShell {
    grid-template-columns: 1fr;
    padding: 6vh 5vw;
  }

  .authIntro h1 {
    font-size: 3rem;
  }

  .authForms {
    padding: 24px;
  }

  .topMenu {
    align-items: flex-start;
    gap: 18px;
  }

  .topMenuRight {
    align-items: flex-end;
    display: grid;
    gap: 14px;
  }

  .topMenuNav {
    gap: 18px;
    justify-content: flex-end;
  }

  .accountMenu {
    margin-left: 0;
  }

  .sheetCreateForm,
  .runSheetEditForm,
  .runSheetItem {
    display: grid;
    grid-template-columns: 1fr;
  }

  .billingHeader {
    display: grid;
  }

  .pricingPlanList {
    grid-template-columns: 1fr;
  }

  .runSheetActions {
    justify-content: flex-start;
  }

  .innerChild {
    width: 95vw;
  }

  .flex.gap1Rem{
    gap: .6rem;
  }

  .clockSmall{
    font-size: 3rem;
  }

  .clockItemLine{
    font-size: 1.8rem;
  }

  .td {
    font-size: 1.9rem;
    line-height: 3rem;
  }

  .maxWidth50 {
    max-width: 70%;
  }

  .infoContainer .right {
    font-size: 1.6rem;
  }

  .infoContainer .left {
    min-width: 72%;
  }

  .currentItemLine,
  .nextItemLine {
    font-size: 2rem;
  }

  .borderContainerOutline {
    border: solid 3px var(--clr-surface-a10);
  }

  .currentCentered {
    width: 100%;
    min-height: 15rem;
  }

  .nextUpCentered {
    min-width: 75%;
    max-width: 100%;
  }

  .viewerStyle {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .hiii {
    font-size: 2.5rem;
  }

  .wrapper {
    width: 95vw;

  }

  #overlayMessage {
    font-size: 3.5rem;
    max-width: 90%;
  }

}

@media screen and (min-width: 1200px) {
  .producerContainer {
    display: flex;
  }

  .producerContainer.left {
    width: 35%;
  }
}
