/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #666;
  --border: #e5e5e5;
  --card: #fafafa;
  --primary: #111;
  --danger: #b00020;
  --success: #0a7a3b;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.topHeader {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 12px;
  gap: 12px;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brandMark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brandText {
  min-width: 0;
}

.brandTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.brandSubtitle {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 56vw;
}

.headerActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}

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

.quickNavBtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--muted);
  display: inline-grid;
  place-items: center;
  background: transparent;
}

.quickNavBtnActive {
  color: var(--fg);
  border-color: var(--border);
  background: var(--card);
}

.userAvatarBtn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}

.userAvatarBtn:hover {
  filter: brightness(0.97);
}

.userAvatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.userAvatarInitials {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.userMenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 196px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 30;
}

.userMenuItem {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.userMenuItem:hover {
  background: var(--card);
}

.userMenuItemPlain {
  justify-content: flex-start;
  padding-left: 38px;
}

.userMenuIcon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: #222;
}

.navDesktop {
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
}

.navLink {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.navLink .navIconSvg {
  width: 24px;
  height: 24px;
}

.navLinkActive {
  color: var(--fg);
  border-color: var(--border);
  background: var(--card);
}

.shellMain {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  padding-bottom: 92px; /* room for mobile tabs */
}

.shellMainNoPad {
  max-width: none;
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  height: 100dvh;
}


.shellMainThread {
  padding-bottom: 0;
}
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
}

.card + .card {
  margin-top: 16px;
}

.h1 {
  margin: 0;
  font-size: 20px;
}

.h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.muted {
  color: var(--muted);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.row > * { min-width: 0; }
.rowStretch { align-items: stretch; }
@media (max-width: 640px) {
  .rowStackSm { flex-direction: column; }
  .btnFullSm { width: 100%; }
  .btnGroupSm > .btn { width: 100%; }
}


.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--border);
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

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

.btnGhost {
  background: transparent;
  color: var(--fg);
}

/* Medium-grey button variant (keeps .btn sizing + border) */
.btnMuted {
  background: #e9eaec;
  color: var(--fg);
}

.btnMuted:hover:not(:disabled) {
  filter: brightness(0.985);
}

/* Danger button variant (keeps .btn sizing + border) */
.btnDanger {
  background: var(--danger);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

/* Small icon-only danger action (e.g., delete) */
.iconDangerBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--danger);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: inline-grid;
  place-items: center;
}

.iconDangerBtn:hover:not(:disabled) {
  background: rgba(176, 0, 32, 0.06);
}

.iconDangerBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Soft-outline card (for nested step cards) */
.softCard {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Subtle well/container */
.softWell {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 12px;
  background: var(--card);
}

/* Simple confirm modal */

.iconBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  min-height: 44px;
  min-width: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.iconBtn:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

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

.iconBtn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.18);
  outline-offset: 2px;
}

.iconBtn:hover:not(:disabled) {
  filter: brightness(0.985);
}

.iconBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Mobile readability + avoid "zoom out to fit everything" */
@media (max-width: 560px) {
  /* Make admin nav wrap instead of forcing horizontal scroll */
  .adminNav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .adminNavItem {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 8px);
    justify-content: center;
  }

  /* Bigger, easier-to-read/tap baseline */
  .brandTitle { font-size: 18px; }
  .brandSubtitle { font-size: 13px; }

  .tab { font-size: 14px; }

  .h2 { font-size: 20px; }

  .btn {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .input {
    padding: 14px 14px;
    border-radius: 16px;
    font-size: 16px;
  }

  .iconBtn,
  .iconDangerBtn {
    min-height: 52px;
    min-width: 52px;
    border-radius: 16px;
  }

  .card { padding: 14px; }
}

.confirmOverlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
}

.confirmModal {
  width: min(560px, 92vw);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  color: var(--fg);
  padding: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.confirmTitle {
  font-weight: 900;
  font-size: 18px;
}

.confirmMsg {
  color: var(--muted);
  line-height: 1.45;
}

.confirmActions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.linkLike {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--primary);
  cursor: pointer;
  font: inherit;
}

.linkLike:hover {
  text-decoration: underline;
}

.field {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  margin-top: 12px;
}

.label {
  font-size: 14px;
  font-weight: 700;
}

.input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  min-height: 44px;
  background: #fff;
  max-width: 100%;
  box-sizing: border-box;
}
.inputFluid { width: 100%; }



.hint {
  font-size: 13px;
  color: var(--muted);
}


/* Simple toggle switch (mobile-friendly) */
.toggleSwitch {
  position: relative;
  width: 54px;
  height: 34px;
  display: inline-block;
}
.toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggleTrack {
  position: absolute;
  inset: 0;
  background: #e9eaec;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  transition: background 160ms ease;
}
.toggleThumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform 160ms ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.toggleSwitch input:checked + .toggleTrack {
  background: rgba(17,17,17,0.85);
}
.toggleSwitch input:checked + .toggleTrack .toggleThumb {
  transform: translateX(20px);
}
.toggleSwitch input:focus-visible + .toggleTrack {
  outline: 2px solid rgba(17,17,17,0.35);
  outline-offset: 2px;
}

.alert {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  margin-top: 12px;
  background: #fff;
}

.alertTitle {
  font-weight: 800;
}

.alertMsg {
  margin-top: 6px;
  color: var(--muted);
}

.alert-error {
  border-color: rgba(176, 0, 32, 0.25);
  background: rgba(176, 0, 32, 0.06);
}

.alert-success {
  border-color: rgba(10, 122, 59, 0.25);
  background: rgba(10, 122, 59, 0.06);
}

.fullPageCenter {
  min-height: 80dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.spinnerWrap {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  justify-items: center;
}

.spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

.spinnerLabel {
  color: var(--muted);
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.navMobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 6px;
  gap: 6px;
}

.tab {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  min-height: 44px;
  display: grid;
  place-items: center;
}

.tab .navIconSvg {
  width: 35px;
  height: 35px;
}

.tabActive {
  color: var(--fg);
  background: var(--card);
  border-color: var(--border);
}

@media (min-width: 900px) {
  .topHeader {
    grid-template-columns: 1fr auto auto;
  }

  .navDesktop {
    display: flex;
  }

  .navMobile {
    display: none;
  }

  .headerQuickLinks {
    display: none;
  }

  .shellMain {
    padding-bottom: 24px;
  }

  .brandSubtitle {
    max-width: 420px;
  }
}


/* ---------- Admin builder layout ---------- */
.shellMainWide {
  max-width: 1600px;
}

.shellMainFluid {
  max-width: none;
  padding-inline: clamp(16px, 1.8vw, 32px);
}

.adminLayout {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  gap: 12px;
}

@media (min-width: 900px) {
  .adminLayout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.adminNav {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

@media (min-width: 900px) {
  .adminNav {
    flex-direction: column;
    gap: 6px;
  }
}

.adminNavItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
}

.adminNavItem:hover {
  border-color: rgba(0,0,0,0.2);
}

.adminNavItemActive {
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.03);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  border-bottom: 1px solid var(--border);
  padding: 10px 8px;
  vertical-align: top;
}

.table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.fieldRow {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  gap: 10px;
}


/* ---------- Admin Users (desktop-first) ---------- */
.adminUsersGrid {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-gap: 14px;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px) {
  .adminUsersGrid {
    grid-template-columns: 1fr;
  }
}

.adminUsersListCard {
  padding: 0;
  overflow: hidden;
}

.adminUsersListHeader {
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.adminUsersListBody {
  max-height: calc(100vh - 300px);
  overflow: auto;
}

.adminUsersListCols {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.9fr auto;
  grid-gap: 10px;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.50);
}

@media (max-width: 980px) {
  .adminUsersListBody {
    max-height: none;
  }
}

.adminUsersRow {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.9fr auto;
  grid-gap: 10px;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  background: #fff;
  align-items: center;
}

.adminUsersRow:hover {
  background: rgba(0,0,0,0.02);
}

.adminUsersRowActive {
  background: rgba(0,0,0,0.05);
  box-shadow: inset 4px 0 0 var(--primary);
}

.adminUsersRowCell {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.adminUsersRowEmail {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 13px;
}

.adminUsersRowName {
  font-weight: 700;
  font-size: 13px;
}

.adminUsersRowNick {
  color: var(--muted);
  font-size: 13px;
}

.adminUsersPill {
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.03);
  white-space: nowrap;
}

.adminUsersPillActive {
  color: var(--success);
  background: rgba(10, 122, 59, 0.10);
  border-color: rgba(10, 122, 59, 0.22);
}

.adminUsersPillInactive {
  color: var(--danger);
  background: rgba(176, 0, 32, 0.08);
  border-color: rgba(176, 0, 32, 0.20);
}

.adminUsersDetailCard {
  overflow: hidden;
}

.adminUsersDetailGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}

@media (max-width: 980px) {
  .adminUsersDetailGrid {
    grid-template-columns: 1fr;
  }
}

.adminUsersSectionTitle {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.50);
  margin: 0 0 6px;
}

.adminUsersKv {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 8px 12px;
  gap: 8px 12px;
  font-size: 13px;
  margin-top: 10px;
}

.adminUsersDangerNote {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(176, 0, 32, 0.18);
  background: rgba(176, 0, 32, 0.06);
  color: rgba(0, 0, 0, 0.80);
  line-height: 1.45;
  font-size: 13px;
}

.adminUsersPlaceholderBox {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 12px 12px;
  background: rgba(0,0,0,0.02);
}

@media (min-width: 700px) {
  .fieldRow {
    grid-template-columns: 1fr 1fr;
  }
}

.textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}


/* Alert header + action */
.alertHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.alertActionBtn {
  padding: 6px 10px;
  font-size: 14px;
}

/* Calendar */
.calendarTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

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

.calendarGrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 8px;
  gap: 8px;
}

.calendarDow {
  font-size: 12px;
  opacity: 0.7;
  text-align: center;
}

.calendarCell {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-height: 76px;
  background: var(--card);
  cursor: pointer;
}

.calendarCell:hover {
  border-color: var(--border-strong);
}

.calendarCellSelected {
  outline: 2px solid var(--border-strong);
}

.calendarCellMuted {
  opacity: 0.5;
}

.calendarCellDayNum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  white-space: nowrap;
}


/* --------------------
   Workout session UI
   -------------------- */

.wkWrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wkGrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 14px;
  gap: 14px;
}

@media (min-width: 980px) {
  .wkGrid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.wkSupersetTabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.wkSupersetPill {
  flex: 0 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 120px;
}

.wkSupersetPillActive {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
}

.wkSupersetPillCurrent {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05) inset;
}

.wkSupersetPillDone {
  opacity: 0.8;
}

.wkSupersetPillName {
  display: block;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wkSupersetPillMeta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.75;
}

.wkSupersetHeader {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.wkRowList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wkRowItem {
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.wkRowItemActive {
  border-color: var(--border-strong);
}

.wkRowItemDone {
  opacity: 0.75;
}

.wkRowItemRest {
  background: rgba(255,255,255,0.03);
}

.wkRowItemIcon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  flex: 0 0 auto;
}

.wkRowItemText {
  min-width: 0;
  flex: 1 1;
}

.wkRowItemTitle {
  font-weight: 900;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wkRowItemSub {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.75;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wkBottomActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.wkParamsGrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  gap: 10px;
}

@media (min-width: 540px) {
  .wkParamsGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.wkField {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wkFieldLabel {
  font-weight: 900;
  font-size: 13px;
}

.wkParamLine {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
}

.wkParamLabel {
  font-weight: 900;
}

.wkRestBig {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.wkTimerPanel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
}

@media (min-width: 720px) {
  .wkTimerPanel {
    left: auto;
    width: 420px;
  }
}

.wkTimerPanelInner {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  background: rgba(20, 20, 25, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.wkTimerRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wkTimerBig {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 8px;
}

/* Video component helpers */
.videoBox {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.videoFrame {
  width: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ytLite {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.ytLite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.18));
}

.ytLitePlay {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  z-index: 1;
}

.ytLitePlay::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(0,0,0,0.78);
}



/* Workout rest timer modal (force colors; ignore browser dark-mode quirks) */
.wkTimerOverlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.wkTimerModal {
  width: min(720px, 92vw);
  height: min(620px, calc(100vh - 36px));
  max-height: calc(100vh - 36px);
  overflow: hidden;
  background: #0b0b0b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color-scheme: dark;
  forced-color-adjust: none;
}

.wkTimerTime {
  font-size: clamp(64px, 14vw, 132px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

@media (max-width: 420px) {
  .wkTimerTime {
    font-size: 72px;
  }
}

.wkTimerButtons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}

.wkTimerBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 12px;
  font-weight: 900;
  background: #1d1f26;
  color: #ffffff;
}

.wkTimerBtnPrimary {
  background: #2b2f3a;
  border-color: rgba(255, 255, 255, 0.22);
}

.wkTimerDoneTitle {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.wkTimerDoneBody {
  font-size: 15px;
  opacity: 0.92;
  line-height: 1.5;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  max-width: 52ch;
}
.wkTimerModalRest {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.18);
  color-scheme: light;
}

.wkTimerModalRest .wkTimerTime {
  color: #111111 !important;
  -webkit-text-fill-color: #111111;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.wkTimerModalRest .wkTimerBtn {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.24);
}

.wkTimerModalRest .wkTimerBtnPrimary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.wkTimerModalRest .wkTimerDoneTitle,
.wkTimerModalRest .wkTimerDoneBody {
  color: #111111 !important;
  -webkit-text-fill-color: #111111;
}

.wkRowItemLocked {
  opacity: 0.45;
}

/* Workout Session Runner v2 (mobile-first, native-wrapper friendly) */
.wsOverlay {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #0b0b0b;
  color: #ffffff;
}

.wsHeader {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, #11131a 0%, #0b0b0b 100%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.wsHeaderBtn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.wsHeaderTitle {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.1;
  padding: 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wsPager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px 10px;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wsDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.wsDotActive {
  background: rgba(255,255,255,0.95);
}

.wsBody {
  flex: 1 1;
  overflow-y: auto;
  padding: 14px 14px calc(96px + env(safe-area-inset-bottom));
  background: #f6f7fb;
  color: #111;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.wsBodyNoScroll {
  overflow: hidden;
}

.wsBodyAnimating {
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes wsSlideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-18%);
    opacity: 0.65;
  }
}

@keyframes wsSlideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(18%);
    opacity: 0.65;
  }
}

@keyframes wsSlideInFromRight {
  from {
    transform: translateX(18%);
    opacity: 0.65;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes wsSlideInFromLeft {
  from {
    transform: translateX(-18%);
    opacity: 0.65;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wsBodyAnimOutNext,
  .wsBodyAnimOutPrev,
  .wsBodyAnimInNext,
  .wsBodyAnimInPrev {
    animation: none !important;
  }

  .wsBodyAnimating {
    will-change: auto;
    pointer-events: auto;
  }
}

.wsBodyAnimOutNext {
  animation: wsSlideOutLeft 220ms ease forwards;
}

.wsBodyAnimOutPrev {
  animation: wsSlideOutRight 220ms ease forwards;
}

.wsBodyAnimInNext {
  animation: wsSlideInFromRight 240ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.wsBodyAnimInPrev {
  animation: wsSlideInFromLeft 240ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.wsBottomBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.wsBottomHint {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}

.wsDoneBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(0,0,0,0.12);
  background: #11131a;
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 48px;
  font-weight: 900;
}

.wsDoneBtn:disabled {
  opacity: 0.5;
}

.wsTransitionOverlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0,0,0,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #ffffff;
}

.wsTransitionCard {
  width: min(720px, 92vw);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #0b0b0b;
  padding: 22px;
  text-align: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.wsTransitionTitle {
  font-size: 26px;
  font-weight: 900;
}

.wsTransitionBody {
  margin-top: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.wsTransitionBtnRow {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.wsTransitionBtn {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  min-width: 140px;
}

.wsTransitionBtnPrimary {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
}

/* Exercise detail sheet (mobile bottom-sheet style) */
.wsSheetBackdrop {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
}

.wsSheet {
  width: min(720px, 100%);
  max-height: min(86dvh, 760px);
  background: #ffffff;
  color: #111;
  border-radius: 26px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  outline: none;
}

.wsSheetHeader {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  padding: 12px 12px 10px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wsSheetClose {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.78);
}

.wsSheetTitle {
  text-align: center;
  font-weight: 950;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding: 0 6px;
}

.wsSheetBody {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px 14px 18px;
}

.wsSheetVideoWrap {
  margin-top: 6px;
}

.wsSheetVideoWrap .videoBox {
  border-radius: 22px;
}

.wsSheetDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  margin: 14px auto 2px;
}

.wsSheetSelect {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 16px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.88);
}

.wsSheetVideoEmpty {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  background: #11131a;
  color: rgba(255, 255, 255, 0.82);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.wsSheetSection {
  margin-top: 16px;
}

.wsSheetLabel {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.50);
}

.wsSheetValue {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.92);
}

.wsSheetNote {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 16px;
  line-height: 1.35;
  resize: none;
}

.wsSheetH2 {
  font-size: 22px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.92);
}

.wsSheetText {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.78);
}

.wsSheetParagraphs p {
  margin: 0 0 10px;
}

.wsSheetOl {
  margin: 0;
  padding-left: 22px;
}

.wsSheetOl li {
  margin: 0 0 10px;
}

/* Phase 2: exercise cards + set table */
.wsRoundTitle {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  margin: 10px 0 8px;
  color: rgba(0,0,0,0.85);
}

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

.wsToolBtn {
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 12px;
}

.wsRoundList {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wsRotateRound {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsRoundHeading {
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  margin: 10px 0 4px;
  color: rgba(0,0,0,0.85);
}

.wsRotateList {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wsExerciseCard {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.wsExerciseCardActive {
  outline: 2px solid rgba(17,19,26,0.25);
}

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

.wsThumb {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,0.10);
  background: #f0f0f0;
}

.wsThumbImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsThumbFallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(0,0,0,0.02));
}

.wsThumbPlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.wsExerciseInfo {
  flex: 1 1;
  min-width: 0;
}

.wsExerciseTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wsExerciseTitle {
  font-weight: 900;
  font-size: 16px;
  color: #1c2c7b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wsAltCaret {
  color: rgba(28,44,123,0.7);
  font-weight: 900;
}

.wsExerciseMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: rgba(0,0,0,0.65);
  font-size: 12px;
  flex-wrap: wrap;
}

.wsMetaItem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wsMetaSep {
  opacity: 0.5;
}

.wsTempoInput {
  width: 90px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 12px;
  background: #fff;
}

.wsIconRow {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.wsIconBtn {
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.wsIconBtn:disabled {
  opacity: 0.55;
}

.wsExerciseNote {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0,0,0,0.7);
}

.wsExerciseNoteWide {
  width: 100%;
  text-align: left;
}

.wsSetTable {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
}

.wsSetHeaderRow {
  display: grid;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wsSetRow {
  display: grid;
  width: 100%;
  border: 0;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.wsSetRow + .wsSetRow {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.wsSetRowActive {
  background: rgba(208,168,74,0.18);
}

.wsSetCell {
  padding: 10px 10px;
  font-size: 13px;
  color: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wsSetCellBtn {
  border: 0;
  background: transparent;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  justify-content: flex-start;
}

.wsSetCellEdit {
  padding: 6px 8px;
}

.wsCellEdit {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  background: #fff;
}

.wsCellEditBool {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.wsCellEditBoolLabel {
  font-size: 12px;
  opacity: 0.7;
}

.wsSetCellSet {
  font-weight: 900;
}

.wsSetCellCheck {
  justify-content: flex-end;
  padding-right: 12px;
}

.wsHeaderCaret {
  opacity: 0.45;
  font-weight: 900;
}


.wsSetNo {
  width: 22px;
}

.wsCheck {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.18);
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.wsCheck:disabled {
  cursor: default;
}

.wsCheckReady {
  border-color: rgba(0,0,0,0.32);
}

.wsCheckDone {
  border-color: rgba(0, 140, 80, 0.35);
  background: rgba(0, 170, 95, 0.95);
}

.wsRestCard {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.wsRestCardActive {
  outline: 2px solid rgba(17,19,26,0.18);
}

.wsRestMain {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.wsRestTitle {
  font-weight: 900;
  font-size: 15px;
}

.wsRestMeta {
  font-weight: 800;
  opacity: 0.65;
}

.wsRestRight {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.wsRestActions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.wsMiniBtn {
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;
}

.wsMiniBtnPrimary {
  background: #11131a;
  color: #fff;
}

.wsEditor {
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 10px;
}

.wsEditorActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wsParamsGrid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 10px;
  gap: 10px;
}



.navDotBadge {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.96);
}

.navDotBadgeMobile {
  right: calc(50% - 18px);
  bottom: 2px;
}

.navIconLink {
  position: relative;
}

.navIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.navLinkDisabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.navDotBadgeTop {
  right: -2px;
  bottom: -1px;
}

.navIconSvg {
  width: 24px;
  height: 24px;
}

@media (max-width: 899px) {
  .navIconSvg {
    width: 35px;
    height: 35px;
  }
}

