: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;
  --app-gutter: clamp(32px, 5vw, 84px);

/** 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);
  border-bottom: 1px solid var(--clr-surface-a20);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 1.4rem var(--app-gutter);
}

.topMenuBrand {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}

.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;
  grid-column: 2;
  justify-content: center;
  min-width: 0;
}

.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;
}

.topMenuBreadcrumb {
  align-items: center;
  color: var(--off-white);
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
  min-width: 0;
}

.breadcrumbBack {
  align-items: center;
  color: var(--off-white);
  display: inline-flex;
  gap: 5px;
  transition: color 160ms ease;
  white-space: nowrap;
}

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

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

.breadcrumbChevron {
  font-size: 1.35rem;
  line-height: 1;
}

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

.breadcrumbCurrent {
  color: var(--off-white);
  display: inline-block;
  max-width: min(36vw, 360px);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.pageBreadcrumb {
  align-items: center;
  color: var(--off-white);
  display: inline-flex;
  font-size: .98rem;
  font-weight: 700;
  gap: 9px;
  margin-bottom: 26px;
  max-width: 100%;
}

.pageBreadcrumb .breadcrumbCurrent {
  max-width: min(70vw, 720px);
}

.topMenuAccount {
  display: flex;
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}

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

.accountTextButton {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--off-white);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  transition: color 200ms ease-in-out, border-color 200ms ease-in-out, background-color 200ms ease-in-out;
  width: 40px;
}

.accountTextButton svg {
  display: block;
  height: 26px;
  width: 26px;
}

.accountTextButton:hover,
.accountTextButton:focus-visible {
  background-color: var(--clr-surface-tonal-a10);
  border-color: var(--clr-surface-a40);
  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-radius: 8px;
  max-height: calc(100vh - 48px);
  max-width: 620px;
  min-height: 360px;
  overflow-y: auto;
  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 {
  align-items: center;
  background: var(--clr-surface-tonal-a20);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 50%;
  color: var(--text-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 36px;
}

.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: 0;
  overflow-wrap: anywhere;
}

.accountModalStatus {
  color: var(--next-color);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
  min-height: 1.4rem;
}

.accountModalStatus:empty {
  display: none;
}

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

.accountModalSection {
  border-top: 1px solid var(--clr-surface-a30);
  padding: 22px 0;
}

.accountModalHeader + .accountModalSection {
  border-top: 0;
  padding-top: 0;
}

.accountModalSection h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.accountModalPlan {
  color: var(--off-white);
  font-size: 1rem;
  margin-bottom: 10px;
  max-width: none;
}

.accountModalPlanAllowance {
  color: var(--off-whiter);
  font-size: 1rem;
  margin-bottom: 14px;
  max-width: none;
}

.accountTextActionList {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.accountTextAction {
  background: transparent;
  border: 0;
  color: var(--clr-primary-a20);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.accountTextAction:hover,
.accountTextAction:focus-visible {
  color: var(--text-color);
  outline: none;
  text-decoration: underline;
}

.accountModalFormSlot[hidden] {
  display: none;
}

.accountModalForm {
  border-top: 1px solid var(--clr-surface-a30);
  display: grid;
  gap: 14px;
  padding: 22px 0;
}

.accountModalForm h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

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

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

.accountModalFormActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.accountDangerZone {
  padding-top: 22px;
}

.accountDangerAction {
  color: var(--critical-color);
}

.accountDangerAction:hover,
.accountDangerAction:focus-visible {
  color: hsl(356, 85%, 62%);
}

.accountModalFooter {
  border-top: 1px solid var(--clr-surface-a30);
  padding-top: 22px;
}

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

.sheetPage {
  padding-bottom: calc(140px + env(safe-area-inset-bottom));
}

.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;
}

.runSheetItem {
  align-items: center;
  background: var(--clr-surface-a10);
  border: 1px solid var(--clr-surface-a20);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 22px;
  position: relative;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.runSheetItem:hover,
.runSheetItem:focus-visible {
  background: var(--clr-surface-tonal-a10);
  border-color: var(--clr-surface-a40);
  outline: none;
}

.runSheetItem:not(.runSheetEditItem) {
  padding-right: 218px;
}

.runSheetFloatingActions {
  display: inline-flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 18px;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.runSheetFloatingAction {
  align-items: center;
  background: var(--clr-surface-tonal-a20);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 6px;
  color: var(--off-white);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
  width: 38px;
}

.runSheetDeleteButton {
  color: hsl(356, 72%, 63%);
}

.runSheetFloatingAction svg {
  display: block;
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.runSheetItem:hover .runSheetFloatingActions,
.runSheetItem:focus-within .runSheetFloatingActions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.runSheetDeleteButton:hover,
.runSheetDeleteButton:focus-visible {
  border-color: hsl(356, 72%, 63%);
  color: hsl(356, 72%, 72%);
}

.runSheetFloatingAction:disabled {
  cursor: wait;
  opacity: .55;
}

@media (hover: none) {
  .runSheetFloatingActions {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .runSheetFloatingAction:disabled {
    opacity: .55;
  }
}

.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;
}

.runSheetItemDetails {
  flex: 1 1 340px;
  min-width: 0;
}

.runSheetSharePanel {
  background: var(--clr-surface-tonal-a0);
  border: 1px solid var(--clr-surface-a30);
  border-radius: 8px;
  flex: 1 0 100%;
  padding: 18px;
  width: 100%;
}

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

.runSheetShareHeader h4 {
  font-size: 1.1rem;
  margin: 0;
}

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

.runSheetSharePanel p {
  color: var(--off-white);
  margin-bottom: 14px;
  max-width: 72ch;
}

.runSheetShareStatus {
  color: var(--next-color);
  font-weight: 700;
  min-height: 1.4rem;
}

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

.runSheetShareControls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.runSheetShareInput {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 4px;
  color: var(--text-color);
  flex: 1 1 360px;
  font-size: .95rem;
  min-width: 220px;
  padding: 12px;
}

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

.runSheetEditItem {
  align-items: stretch;
  cursor: default;
}

.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: 1px solid var(--clr-surface-a20);
  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 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;
}

.authSwitch {
  align-items: center;
  border-top: 1px solid var(--clr-surface-a30);
  color: var(--off-white);
  display: flex;
  flex-wrap: wrap;
  font-size: 1.05rem;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
}

.authSwitchButton {
  background: transparent;
  border: 1px solid var(--clr-primary-a20);
  border-radius: 4px;
  color: var(--clr-primary-a40);
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 12px 16px;
}

.authSwitchButton:hover,
.authSwitchButton:focus-visible {
  background: var(--clr-surface-tonal-a20);
  color: var(--text-color);
}

.authHelperText {
  color: var(--off-whiter);
  margin-bottom: 20px;
}

.resetPasswordMeta {
  color: var(--off-whiter);
  margin-bottom: 20px;
}

.adminLoginBody {
  background: #000;
  color: #17ff19;
  min-height: 100%;
  position: relative;
}

.adminLoginBody::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(112, 255, 165, .055) 0,
      rgba(112, 255, 165, .055) 1px,
      transparent 1px,
      transparent 4px
    );
  content: "";
  inset: 0;
  opacity: .16;
  pointer-events: none;
  position: fixed;
}

.adminLoginShell {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 100%;
  padding: clamp(28px, 7vw, 72px);
}

.adminLoginPanel {
  margin: 0 auto;
  max-width: 620px;
  padding: 0;
  position: relative;
  width: min(100%, 620px);
}

.adminLoginPrompt,
.adminLoginForm label,
.adminLoginForm input,
.adminLoginButton,
.adminLoginStatus {
  font-family: "SFMono-Regular", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

.adminLoginPrompt {
  color: #17ff19;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: .02em;
  margin-bottom: 22px;
  text-shadow: 0 0 8px rgba(23, 255, 25, .32);
}

.adminLoginCursor {
  animation: adminLoginBlink 1s steps(1, end) infinite;
  background: currentColor;
  display: inline-block;
  height: 1.05em;
  margin-left: .32rem;
  vertical-align: -.14em;
  width: .62ch;
}

.adminLoginStatus {
  color: #17ff19;
  margin-bottom: 18px;
  min-height: 1.4rem;
  text-shadow: 0 0 8px rgba(23, 255, 25, .24);
}

.adminLoginStatus.isError {
  color: #ff8a8a;
}

.adminLoginForm {
  display: grid;
  gap: 18px;
}

.adminLoginField {
  align-items: center;
  column-gap: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}

.adminLoginField span {
  color: #17ff19;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 8px rgba(23, 255, 25, .18);
}

.adminLoginField input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 255, 25, .5);
  color: #17ff19;
  caret-color: #17ff19;
  font-size: 1rem;
  outline: none;
  padding: 10px 0 9px;
  text-shadow: 0 0 8px rgba(23, 255, 25, .14);
  transition: border-color 160ms ease, color 160ms ease, text-shadow 160ms ease;
}

.adminLoginField input::placeholder {
  color: rgba(23, 255, 25, .45);
}

.adminLoginField input:focus {
  border-color: rgba(23, 255, 25, .82);
  color: #17ff19;
  text-shadow: 0 0 10px rgba(23, 255, 25, .22);
}

.adminLoginActionRow {
  align-items: center;
  display: inline-grid;
  justify-content: start;
}

.adminLoginButton {
  background: transparent;
  border: none;
  color: #17ff19;
  cursor: pointer;
  font-size: .98rem;
  font-weight: 700;
  justify-self: start;
  letter-spacing: .03em;
  margin-top: 8px;
  padding: 0;
  text-transform: lowercase;
  text-shadow: 0 0 8px rgba(23, 255, 25, .28);
  transition: color 160ms ease, text-shadow 160ms ease, transform 160ms ease;
}

.adminLoginButton::before {
  content: "[ ";
}

.adminLoginButton::after {
  content: " ]";
}

.adminLoginButton:hover,
.adminLoginButton:focus-visible {
  color: #17ff19;
  outline: none;
  text-shadow: 0 0 12px rgba(23, 255, 25, .44);
}

.adminLoginButton:active {
  transform: translateY(1px);
}

@keyframes adminLoginBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.adminBody {
  min-height: 100%;
}

.adminPage {
  padding-bottom: 72px;
}

.adminTopBar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.adminTopBar h1 {
  font-family: Poppins, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 10px;
}

.adminTopBar p {
  color: var(--off-whiter);
  margin-bottom: 0;
  max-width: 72ch;
}

.adminTopBarActions {
  flex: 0 0 auto;
}

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

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

.adminSummaryGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 28px;
}

.adminSummaryCard {
  background: var(--clr-surface-a10);
  border: 1px solid var(--clr-surface-a20);
  border-radius: 8px;
  padding: 18px;
}

.adminSummaryCard h2 {
  color: var(--off-whiter);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.adminSummaryValue {
  color: var(--text-color);
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.adminPanel {
  background: var(--clr-surface-a10);
  border: 1px solid var(--clr-surface-a20);
  border-radius: 8px;
  padding: 24px;
}

.adminPanelHeader {
  margin-bottom: 20px;
}

.adminPanelHeader h2 {
  margin-bottom: 8px;
}

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

.adminTableWrap {
  overflow-x: auto;
}

.adminUserTable {
  border-collapse: collapse;
  min-width: 1080px;
  width: 100%;
}

.adminUserTable th,
.adminUserTable td {
  border-bottom: 1px solid var(--clr-surface-a20);
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
}

.adminUserTable th {
  color: var(--off-whiter);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.adminUserTable td {
  color: var(--off-white);
  font-size: .98rem;
}

.adminUserTable td:first-child {
  color: var(--text-color);
  font-weight: 700;
}

.adminUserTable tbody tr:last-child td {
  border-bottom: 0;
}

.adminInlineMeta {
  color: var(--off-whiter);
  display: grid;
  font-size: .9rem;
  gap: 4px;
}

.adminPill {
  border: 1px solid var(--clr-surface-a30);
  border-radius: 999px;
  color: var(--off-white);
  display: inline-flex;
  font-size: .86rem;
  font-weight: 700;
  padding: 6px 10px;
  white-space: nowrap;
}

.adminPill.isActive {
  border-color: hsl(141, 49%, 47%);
  color: hsl(141, 61%, 63%);
}

.adminPill.isTrialing {
  border-color: var(--clr-primary-a20);
  color: var(--clr-primary-a30);
}

.adminPill.isCanceled,
.adminPill.isPastDue,
.adminPill.isNone {
  border-color: var(--clr-surface-a40);
  color: var(--off-whiter);
}

.adminBoolean {
  font-weight: 700;
}

.adminBoolean.isYes {
  color: var(--next-color);
}

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

.adminTableActions {
  align-items: flex-start;
  display: grid;
  gap: 12px;
}

.adminDeleteBtn {
  background-color: transparent;
  border-color: var(--critical-color);
  color: hsl(356, 76%, 68%);
}

.adminDeleteBtn:hover:not(:disabled),
.adminDeleteBtn:focus-visible:not(:disabled) {
  background-color: hsla(356, 75%, 47%, .14);
  border-color: hsl(356, 75%, 58%);
  color: var(--text-color);
}

.adminResetResult {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a20);
  border-radius: 6px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.adminResetResult p {
  color: var(--off-whiter);
  font-size: .9rem;
  margin-bottom: 0;
}

.adminResetLinkRow {
  align-items: center;
  display: flex;
  gap: 8px;
}

.adminResetLinkInput {
  background: var(--bg-color);
  border: 1px solid var(--clr-surface-a40);
  border-radius: 4px;
  color: var(--text-color);
  flex: 1 1 auto;
  font-size: .9rem;
  padding: 10px 12px;
}

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

@media screen and (max-width: 1180px) {
  .wrapper.floorWrapper {
    width: 96vw;
  }

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

  .floorRemainingPanel {
    text-align: left;
  }

  .floorInfoGrid,
  .floorNotesGrid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-height: 820px) and (orientation: landscape) {
  .wrapper.floorWrapper {
    padding-bottom: 110px;
    padding-top: 18px;
    width: 96vw;
  }

  .floorTopGrid,
  .floorInfoGrid,
  .floorMetaStack,
  .floorNotesGrid {
    gap: 14px;
  }

  .floorTopGrid {
    margin-bottom: 14px;
  }

  #countdown.floorCountdown {
    font-size: 3rem;
  }

  .floorNextMeta {
    font-size: 2rem;
    margin-top: 0;
  }

  .floorItemTitleLine {
    font-size: 2.3rem;
  }

  .floorItemPresenterLine {
    font-size: 1.8rem;
  }

  .floorNoteContainer {
    min-height: 148px;
    padding: 18px;
  }

  .floorNoteContainer .note {
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .floorControlBar {
    padding: 14px 2.5vw 18px;
  }

  .floorNavBtn {
    font-size: 1.18rem;
    min-height: 70px;
  }
}

/* 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 */

.siteFooter {
  align-items: center;
  background-color: var(--bg-color);
  border-top: 1px solid var(--clr-surface-a20);
  color: var(--off-whiter);
  display: grid;
  font-size: .95rem;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 80px;
  padding: 28px var(--app-gutter);
}

.siteFooterCell {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.siteFooterCenter {
  justify-content: center;
  text-align: center;
}

.siteFooterRight {
  justify-content: flex-end;
  text-align: right;
}

.siteFooter a {
  color: var(--off-white);
  font-weight: 700;
}

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

.privacyPage {
  color: #FFFEF7;
  max-width: 920px;
  padding-bottom: 40px;
}

.privacyPage h1 {
  color: inherit;
  font-family: Poppins, sans-serif;
  font-size: calc(3rem + 2px);
  line-height: 1.18;
  margin-bottom: 16px;
}

.privacyPage h2 {
  color: inherit;
  font-size: calc(1.8rem + 2px);
  line-height: 1.3;
  margin-bottom: 14px;
}

.privacyPage section {
  border-top: 0;
  padding: 28px 0;
}

.privacyPage section:first-of-type {
  margin-top: 24px;
}

.privacyPage p,
.privacyPage li {
  color: inherit;
  font-size: calc(1rem + 2px);
  line-height: 1.9;
  max-width: 78ch;
}

.privacyPage p {
  margin-bottom: 16px;
}

.privacyPage ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.privacyPage li {
  margin-bottom: 10px;
}

.privacyPage code {
  background: var(--clr-surface-a10);
  border: 1px solid var(--clr-surface-a20);
  border-radius: 4px;
  color: inherit;
  padding: 1px 5px;
}

.privacyKicker,
.privacyUpdated {
  color: var(--off-whiter);
  font-weight: 700;
  margin-bottom: 12px;
}

.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);
}

.wrapper.floorWrapper {
  --floor-side-width: minmax(390px, 34vw);
  padding: 28px 0 126px;
  width: 96vw;
}

.floorTopGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) var(--floor-side-width);
  margin-bottom: 18px;
}

.floorNowPanel,
.floorRemainingPanel {
  min-width: 0;
}

.floorRemainingPanel {
  background-color: var(--clr-surface-a10);
  text-align: center;
}

.floorItemTitleLine,
.floorItemPresenterLine {
  color: var(--off-white);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: normal;
}

.floorItemTitleLine {
  font-size: clamp(2.5rem, 3.9vw, 4rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.floorItemPresenterLine {
  color: var(--off-whiter);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

#countdown.floorCountdown {
  color: var(--clock-countdown-color);
  font-family: Azeret Mono, Arial sans-serif;
  font-size: 5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.floorInfoGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) var(--floor-side-width);
  margin-bottom: 18px;
}

.floorPanel {
  height: 100%;
}

.floorCurrentHeader,
.floorNextHeader {
  align-items: baseline;
  column-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.floorMetaStack {
  display: grid;
  gap: 18px;
}

.floorMetaPanel {
  min-width: 0;
  text-align: center;
}

.floorCurrentMeta,
.floorNextMeta {
  color: var(--off-white);
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
}

.floorNotesGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.floorNoteContainer {
  min-height: 188px;
}

.floorNoteContainer .note {
  color: var(--off-white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.floorControlBar {
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .92) 34%, #000 100%);
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px 3vw 22px;
  position: fixed;
  right: 0;
  z-index: 40;
}

.floorNavBtn {
  align-items: center;
  display: inline-flex;
  font-size: 1.35rem;
  gap: 12px;
  justify-content: center;
  min-height: 82px;
  padding: 0 28px;
}

.floorNavBtn svg {
  height: 1.4rem;
  width: 1.4rem;
}

.floorNavBtnPrev {
  min-width: 150px;
}

.floorNavBtnNext {
  min-width: 194px;
}

.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 {
  display: grid;
  gap: 3rem;
  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;
}

.producerSchedule {
  width: 100%;
}

.producerRunSheetContainer.globalTopMargin {
  padding-top: 48px;
}

.producerSchedule #runSheetComment {
  margin-bottom: 12px;
}

.producerMetaLine {
  align-items: center;
  color: var(--off-white);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.producerMetaLine strong {
  font-size: 1.05rem;
}

.scheduleTopControls,
.scheduleActionFooter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.scheduleTopControls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin-bottom: 20px;
}

.scheduleActionFooter {
  margin-bottom: 34px;
}

.producerSchedule .prodTable {
  margin-bottom: 22px;
}

.producerSchedule .scheduleTopControls .button-row,
.producerSchedule .scheduleActionFooter .button-row {
  margin-bottom: 0;
}

.schedulePrimaryControls {
  justify-self: start;
}

.scheduleSecondaryControls {
  justify-self: end;
}

.producerCurrentTime {
  align-items: baseline;
  color: var(--off-whiter);
  display: inline-flex;
  gap: 10px;
  justify-self: center;
  white-space: nowrap;
}

.producerCurrentTimeLabel {
  font-size: .95rem;
  font-weight: 700;
}

.producerCurrentTimeValue {
  color: var(--off-white);
  font-family: Azeret Mono, monospace;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.scheduleNavBtn {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
}

.scheduleNavBtn svg {
  display: block;
  flex: 0 0 auto;
  height: 1rem;
  width: 1rem;
}

.producerSchedule .button-row,
.producerMessage .button-row {
  margin-bottom: 20px;
}

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

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

/* 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: 1px solid transparent;
  border-radius: 4px;
  padding: 0.7rem 1.3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.16s ease-in-out, border-color 0.16s ease-in-out, color 0.16s ease-in-out, transform 0.16s ease-in-out;
  font-weight: bold;
}

.btn:hover:not(:disabled),
.btn:focus-visible:not(:disabled) {
  outline: none;
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.primaryBtn {
  background-color: var(--clr-primary-a30);
  color: #071113;
}

.primaryBtn:hover:not(:disabled),
.primaryBtn:focus-visible:not(:disabled) {
  background-color: var(--clr-primary-a40);
}

.secondaryBtn {
  background-color: var(--clr-surface-tonal-a20);
  border-color: var(--clr-surface-a40);
  color: var(--off-white);
}

.secondaryBtn:hover:not(:disabled),
.secondaryBtn:focus-visible:not(:disabled) {
  background-color: var(--clr-surface-tonal-a30);
  border-color: var(--clr-primary-a20);
  color: var(--text-color);
}

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

.warningBtn:hover:not(:disabled),
.warningBtn:focus-visible:not(:disabled) {
  background-color: hsl(39, 92%, 52%);
}

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

.criticalBtn:hover:not(:disabled),
.criticalBtn:focus-visible:not(:disabled) {
  background-color: hsl(356, 75%, 55%);
}

#openModalBtn {
  background-color: transparent;
  border-color: var(--critical-color);
  color: hsl(356, 76%, 68%);
}

#openModalBtn:hover:not(:disabled),
#openModalBtn:focus-visible:not(:disabled) {
  background-color: hsla(356, 75%, 47%, .14);
  border-color: hsl(356, 75%, 58%);
  color: var(--text-color);
}

#startScheduleBtn {
  background-color: hsl(142, 45%, 38%);
  color: var(--text-color);
}

#startScheduleBtn:hover:not(:disabled),
#startScheduleBtn:focus-visible:not(:disabled) {
  background-color: hsl(142, 45%, 45%);
}

#pauseScheduleBtn {
  align-items: center;
  background-color: hsl(34, 78%, 47%);
  border-color: hsl(34, 78%, 42%);
  color: hsl(34, 80%, 9%);
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

#pauseScheduleBtn:hover:not(:disabled),
#pauseScheduleBtn:focus-visible:not(:disabled) {
  background-color: hsl(34, 78%, 54%);
  color: hsl(34, 80%, 8%);
}

#pauseScheduleBtn svg {
  display: block;
  flex: 0 0 auto;
  height: .95rem;
  width: .95rem;
}

#stopScheduleBtn {
  background-color: hsl(356, 64%, 43%);
  color: var(--text-color);
}

#stopScheduleBtn:hover:not(:disabled),
#stopScheduleBtn:focus-visible:not(:disabled) {
  background-color: hsl(356, 64%, 50%);
}

/* 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;
}

.publicRunSheetPage {
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

.publicRunSheetHeader {
  margin-bottom: 30px;
}

.publicRunSheetKicker {
  color: var(--clr-primary-a20);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.publicRunSheetHeader h1 {
  font-family: Poppins, sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.publicRunSheetComment {
  color: var(--off-white);
  margin-bottom: 16px;
  max-width: 72ch;
}

.publicRunSheetStatus {
  color: var(--next-color);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

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

.publicScheduleTable {
  margin-bottom: 20px;
}

.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;
}

#scheduleTable th:nth-child(4),
#scheduleTable th:nth-child(5) {
  min-width: 120px;
  white-space: nowrap;
}

.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;
}

.showTable th:nth-child(2) {
  min-width: 210px;
}

.showTable th:nth-child(3) {
  min-width: 96px;
}

/* 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;
}

.prodTable,
.showTable {
  border-collapse: collapse;
  color: var(--off-white);
  font-size: .98rem;
  line-height: 1.42;
  table-layout: fixed;
}

.producerSchedule .prodTable {
  margin-bottom: 24px;
}

.prodTable th,
.showTable th {
  background: hsl(0, 0%, 20%);
  border-bottom: 2px solid hsl(0, 0%, 34%);
  color: hsl(0, 0%, 94%);
  font-size: .92rem;
  font-weight: 800;
  height: auto;
  letter-spacing: 0;
  line-height: 1.25;
  padding: 20px 16px;
  position: sticky;
  text-transform: none;
  top: 0;
  z-index: 3;
}

.prodTable td,
.showTable td {
  border-radius: 0;
  border-bottom: 1px solid hsl(0, 0%, 17%);
  color: hsl(0, 0%, 88%);
  font-weight: 500;
  padding: 18px 16px;
  vertical-align: top;
}

.prodTable th,
.showTable th {
  border-radius: 0;
}

.prodTable tbody tr,
.showTable tbody tr {
  background: hsl(0, 0%, 8%);
  height: auto;
}

.prodTable tbody tr:nth-of-type(even),
.showTable tbody tr:nth-of-type(even) {
  background: hsl(0, 0%, 11%);
}

.prodTable tbody tr:hover {
  background: hsl(195, 8%, 14%);
}

.prodTable tbody tr.active-row {
  background: hsl(356, 28%, 13%);
  box-shadow: inset 4px 0 0 hsl(356, 64%, 43%);
}

.prodTable th:first-child,
.prodTable td:first-child,
.showTable th:first-child,
.showTable td:first-child {
  color: hsl(0, 0%, 74%);
  font-size: .86rem;
  font-weight: 800;
  padding-left: 18px;
  width: 56px;
}

.prodTable th:first-child,
.showTable th:first-child {
  color: hsl(0, 0%, 94%);
  font-size: .92rem;
}

.prodTable td:nth-child(2),
.showTable td:nth-child(2) {
  color: var(--text-color);
  font-weight: 650;
}

#scheduleTable th:nth-child(2) {
  width: 22%;
}

#scheduleTable th:nth-child(3) {
  width: 14%;
}

#scheduleTable th:nth-child(4),
#scheduleTable th:nth-child(5) {
  min-width: 0;
  width: 9ch;
}

#scheduleTable th:nth-child(6) {
  width: 8ch;
}

#scheduleTable th:nth-child(7) {
  width: 16%;
}

#scheduleTable th:nth-child(8) {
  width: 28%;
}

#scheduleTable td:nth-child(4),
#scheduleTable td:nth-child(5),
#scheduleTable td:nth-child(6) {
  font-family: Azeret Mono, monospace;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
}

.prodTable td:nth-child(7),
.prodTable td:nth-child(8),
.showTable td:nth-child(7),
.showTable td:nth-child(8) {
  color: hsl(0, 0%, 82%);
  overflow-wrap: anywhere;
}

.prodTable .editable {
  border-radius: 4px;
  outline: none;
}

.prodTable .editable:focus {
  background: hsl(195, 12%, 18%);
  box-shadow: inset 0 0 0 2px var(--clr-primary-a20);
  color: var(--text-color);
}

.active-row-num {
  background-color: transparent;
  color: var(--text-color);
}

/* 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;
}

.keyboardShortcutsSection {
  padding: 28px 0;
}

.keyboardShortcutsSection + .siteFooter {
  margin-top: 0;
}

.keyboardShortcutsToggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text-color);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 600;
  gap: .6rem;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
}

.keyboardShortcutsToggle svg {
  color: var(--off-white);
  height: 1.2rem;
  transform: rotate(0deg);
  transition: transform 160ms ease, color 160ms ease;
  width: 1.2rem;
}

.keyboardShortcutsToggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

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

.keyboardShortcutsToggle:hover svg,
.keyboardShortcutsToggle:focus-visible svg {
  color: var(--clr-primary-a10);
}

.keyboardShortcutsSection .shortCutContainer {
  padding-bottom: 0;
  padding-top: 30px;
}

.keyboardShortcutsSection .shortCutContainer.isCollapsed {
  display: none;
}

.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;
  }

  .siteFooter {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .siteFooterLeft,
  .siteFooterCenter,
  .siteFooterRight {
    justify-content: flex-start;
    text-align: left;
  }

  .topMenu {
    align-items: flex-start;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topMenuBrand {
    grid-column: 1;
    grid-row: 1;
  }

  .topMenuNav {
    gap: 18px;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .topMenuAccount {
    grid-column: 2;
    grid-row: 1;
  }

  .breadcrumbCurrent {
    max-width: 48vw;
  }

  .scheduleTopControls {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .schedulePrimaryControls,
  .scheduleSecondaryControls,
  .producerCurrentTime {
    justify-self: start;
  }

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

  .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;
  }

  .runSheetItem:not(.runSheetEditItem) {
    padding: 72px 22px 22px;
  }

  .runSheetFloatingActions {
    left: 22px;
    right: auto;
  }

  .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%;
  }

  .adminTopBar {
    align-items: flex-start;
    flex-direction: column;
  }

  .adminPanel {
    padding: 20px;
  }

}

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