* { box-sizing: border-box; }

html {
  min-height: 100%;
  color-scheme: light dark;
  -webkit-text-size-adjust: 100%;
}

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #f0eee8;
  --surface-hover: #ebe8df;
  --text: #202020;
  --muted: #646464;
  --line: #d8d5cc;
  --input: #ffffff;
  --button: #202020;
  --button-text: #ffffff;
  --focus: rgba(32, 32, 32, 0.15);
  --shadow: 0 12px 30px rgba(32, 32, 32, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --font: Inter, Lato, Arial, Helvetica, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #2b2b2b;
    --surface: #333333;
    --surface-soft: #3b3b3b;
    --surface-hover: #444444;
    --text: #f1f1f1;
    --muted: #b9b9b9;
    --line: #505050;
    --input: #303030;
    --button: #f1f1f1;
    --button-text: #202020;
    --focus: rgba(241, 241, 241, 0.16);
    --shadow: none;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg) !important;
  background-image: none !important;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after,
.topbar::before,
.topbar::after,
.card::before,
.card::after,
.login-card::before,
.login-card::after,
.group-card::before,
.group-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  background-color: var(--bg) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; min-width: 0; }
.brand-copy { display: grid; gap: 1px; min-width: 0; }
.brand-title {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-title a:hover { text-decoration: none; }
.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--text);
  text-decoration: none;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
}
h1 { margin-bottom: 8px; font-size: clamp(28px, 3.4vw, 40px); }
h2 { margin-bottom: 8px; font-size: clamp(21px, 2.4vw, 28px); }
h3 { margin-bottom: 6px; font-size: 17px; }
p { margin-bottom: 0; }

.muted { color: var(--muted); }
.small { font-size: 13px; }
.danger-text { color: var(--text); }

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 22px;
}
.page-head > div:first-child { min-width: 0; }
.actions-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.grid { display: grid; gap: 18px; }
.groups-grid { grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); align-items: stretch; }

.card,
.group-card,
.login-card,
.task-card,
.kpi {
  background-color: var(--surface) !important;
  background-image: none !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .group-card, .task-card { padding: 20px; }
.group-card { display: flex; flex-direction: column; min-height: 100%; }
.login-card {
  width: min(100%, 460px);
  margin: clamp(24px, 7vh, 72px) auto;
  padding: 30px;
}
.login-hero { margin-bottom: 20px; text-align: left; }
.kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.login-form { display: grid; gap: 14px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  align-items: start;
}
.form-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.full-col { grid-column: 1 / -1; }
.form-grid > button[type="submit"] { justify-self: start; }
.form-grid.compact > button[type="submit"] { grid-column: 1 / -1; }

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background-color: var(--input) !important;
  background-image: none !important;
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
textarea { min-height: 76px; resize: vertical; }
select { appearance: auto; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px var(--focus);
}
.password-wrap { display: grid !important; gap: 7px; }
.setup-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.setup-actions .btn { width: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--surface) !important;
  background-image: none !important;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: background-color .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}
.btn:hover { background-color: var(--surface-hover) !important; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .72; cursor: wait; transform: none; }
.btn-primary,
.btn-small {
  background-color: var(--button) !important;
  border-color: var(--button);
  color: var(--button-text);
}
.btn-primary:hover,
.btn-small:hover {
  background-color: var(--button) !important;
  color: var(--button-text);
  filter: brightness(.94);
}
.btn-secondary { background-color: var(--surface) !important; color: var(--text); }
.btn-ghost { background-color: transparent !important; color: var(--muted); }
.btn-small { min-height: 38px; padding: 8px 13px; }
.btn-xl { min-height: 50px; padding: 13px 18px; }
.is-saving { opacity: .76; }

.kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.kpi { padding: 16px; }
.kpi span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.kpi strong {
  display: block;
  color: var(--text);
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.deadline-overview { margin-bottom: 20px; }
.deadline-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 4px 0 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section-title-row > div { min-width: 0; }

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrap table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
td pre {
  max-width: 420px;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.small-cell { max-width: 260px; word-break: break-word; }
.note-cell { max-width: 280px; white-space: pre-wrap; word-break: break-word; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.group-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.group-card-top h2 { margin-bottom: 0; }
.progress {
  height: 9px;
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}
.progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--button);
}
.card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.next-task-box {
  margin-top: 14px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  font-size: 13px;
}
.button-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
}
.button-row .btn { width: 100%; }

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.tab {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}
.tab.active {
  background: var(--button);
  border-color: var(--button);
  color: var(--button-text);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.task-stack { display: grid; gap: 14px; }
.task-card { padding: 16px; }
.task-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}
.label-title { color: var(--muted); }
.label-title input { font-weight: 700; }
.task-edit-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(150px, .8fr) minmax(150px, .8fr) minmax(190px, 1fr);
  gap: 12px;
  align-items: end;
}
.deadline-mini {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}
.deadline-mini span { color: var(--muted); font-size: 13px; }
.task-textareas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}
.filters {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}

.alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
}
.inline-flash { display: none; }
.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 36px));
}
.toast {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

details summary { cursor: pointer; font-weight: 700; }

@media (max-width: 1024px) {
  .container { padding: 18px; }
  .kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .task-edit-grid { grid-template-columns: 1fr 1fr; }
  .form-grid.compact { grid-template-columns: 1fr 1fr; }
  .page-head { align-items: stretch; }
  .section-title-row { flex-direction: column; }
  .actions-row { justify-content: flex-start; }
  .button-row { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .brand, .brand-copy { width: 100%; }
  .brand-title { font-size: 16px; }
  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav a {
    width: 100%;
    background: var(--surface-soft);
    border-color: var(--line);
    text-align: center;
  }
  .container { padding: 14px; }
  .page-head { flex-direction: column; margin-top: 10px; }
  .actions-row, .actions-row .btn { width: 100%; }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .kpi { padding: 14px; }
  .kpi strong { font-size: 26px; }
  .groups-grid { grid-template-columns: 1fr; }
  .form-grid,
  .form-grid.compact,
  .task-edit-grid,
  .task-textareas,
  .filters { grid-template-columns: 1fr; }
  .form-grid > button[type="submit"],
  .form-grid.compact > button[type="submit"] { grid-column: auto; width: 100%; }
  .card, .group-card, .login-card, .task-card { border-radius: 14px; padding: 16px; }
  .login-card { margin: 20px auto; }
  .task-card-head { grid-template-columns: 1fr; }
  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    min-width: 0;
  }
  .responsive-table thead { display: none; }
  .responsive-table tr {
    margin-bottom: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
  }
  .responsive-table td {
    display: grid;
    grid-template-columns: minmax(110px, 36%) 1fr;
    gap: 10px;
    padding: 9px 8px;
    border-bottom: 0;
    word-break: break-word;
  }
  .responsive-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .audit-table td { grid-template-columns: 1fr; }
  .audit-table td::before { margin-bottom: 4px; }
  .tabs {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    padding-top: 6px;
  }
  .toast-stack { right: 12px; left: 12px; bottom: 12px; width: auto; }
  .btn { min-height: 48px; }
}

@media (max-width: 420px) {
  .kpis { grid-template-columns: 1fr; }
  .nav { grid-template-columns: 1fr; }
  .card-stats { display: grid; }
  .btn, .setup-actions .btn { width: 100%; }
  .setup-actions { display: grid; }
  .responsive-table td { grid-template-columns: 1fr; }
  .responsive-table td::before { margin-bottom: 2px; }
}



/* FINAL OVERLAP FIXES
   These rules remove the remaining tab/card collisions on desktop, tablet, iOS and Android.
   Main causes fixed: sticky tab overlay, fixed-width KPI/buttons, narrow grid children with long text, and cards touching without vertical gap. */
body { overflow-x: hidden; }

.container,
.page-head,
.section-title-row,
.actions-row,
.grid,
.groups-grid,
.card,
.group-card,
.login-card,
.task-card,
.kpi,
.form-grid,
.task-edit-grid,
.task-textareas,
.button-row,
.tabs,
.nav,
.table-wrap {
  min-width: 0;
}

.card,
.group-card,
.login-card,
.task-card,
.kpi {
  overflow: hidden;
  isolation: isolate;
}

.page-head,
.section-title-row,
.group-card-top,
.task-card-head {
  min-width: 0;
}

.page-head > *,
.section-title-row > *,
.group-card-top > *,
.task-card-head > *,
.actions-row > *,
.nav > *,
.button-row > *,
.card-stats > * {
  min-width: 0;
}

h1, h2, h3,
p, span, strong,
label,
.badge,
.btn,
.deadline-chip,
.next-task-box,
.card-stats,
td, th {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* KPI cards should never squeeze into each other at medium widths. */
.kpis {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 155px), 1fr));
  align-items: stretch;
}

/* Group cards should keep a safe minimum but collapse cleanly on mobile. */
.groups-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.group-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.group-card-top h2 { min-width: 0; }
.group-card-top .badge { flex: 0 1 auto; max-width: 55%; }

/* Buttons were the most likely desktop card-overlap source. This lets them wrap into 2/1 rows instead of colliding. */
.button-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 126px), 1fr));
  gap: 9px;
}
.btn {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Tabs should not be sticky; sticky tabs were covering the first card on some phones/tablets. */
.tabs {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  overflow: visible;
  padding: 0;
  margin: 0 0 18px;
  background: transparent !important;
}
.tab {
  flex: 0 1 auto;
  min-width: 110px;
  text-align: center;
}
.tab-panel.active {
  display: grid;
  gap: 18px;
}
.tab-panel > .card { margin: 0; }

/* Form/task grids now auto-fit instead of forcing columns that can overlap around tablet widths. */
.form-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.form-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.task-edit-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  align-items: stretch;
}
.task-textareas {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.filters {
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) auto;
}

.task-card-head {
  grid-template-columns: minmax(0, 1fr) auto;
}
.task-card-head .badge { max-width: 160px; }
.deadline-mini { min-width: 0; }

/* Tables stay scrollable on desktop but become card rows on phones without squeezing labels into values. */
.table-wrap { max-width: 100%; }
.table-wrap table { table-layout: auto; }
.note-cell, .small-cell, td pre { max-width: 100%; }

@media (max-width: 1180px) {
  .button-row { grid-template-columns: 1fr; }
  .group-card-top .badge { max-width: 65%; }
}

@media (max-width: 900px) {
  .topbar { position: relative; }
  .page-head { flex-direction: column; align-items: stretch; }
  .actions-row { justify-content: flex-start; }
  .actions-row .btn { flex: 1 1 180px; }
  .section-title-row { flex-direction: column; align-items: stretch; }
  .filters { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { overflow-x: clip; }
  .container { width: 100%; padding: 14px; }
  .tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .tab { min-width: 0; width: 100%; padding-inline: 8px; }
  .actions-row,
  .actions-row .btn { width: 100%; }
  .task-card-head { grid-template-columns: 1fr; }
  .task-card-head .badge { max-width: 100%; justify-self: start; }
  .group-card-top { display: grid; grid-template-columns: 1fr; }
  .group-card-top .badge { max-width: 100%; justify-self: start; }
  .responsive-table td { grid-template-columns: minmax(95px, 34%) minmax(0, 1fr); }
}

@media (max-width: 460px) {
  .tabs { grid-template-columns: 1fr; }
  .topbar, .container { padding-left: 12px; padding-right: 12px; }
  .card, .group-card, .login-card, .task-card { padding: 14px; }
  .responsive-table td { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* TIMETABLE CARD STACKING FIX
   Prevents the Upcoming Timetable table/header from visually floating over the group cards below. */
th {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}

.card.elevated,
.deadline-overview,
.table-wrap,
.responsive-table {
  position: relative;
  float: none !important;
  clear: both;
}

.card.elevated {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: 22px;
  z-index: 1;
}

.table-wrap {
  display: block;
  height: auto;
  max-height: none;
  overflow-y: visible;
  padding-bottom: 2px;
}

.table-wrap::after,
.responsive-table::after,
.card.elevated::after {
  content: "";
  display: block;
  clear: both;
}

.groups-grid {
  position: relative;
  z-index: 0;
  margin-top: 22px;
  clear: both;
}

/* On mobile, each timetable row becomes a real card with safe vertical spacing. */
@media (max-width: 760px) {
  .card.elevated {
    overflow: visible;
    margin-bottom: 22px;
  }
  .responsive-table tbody {
    display: grid;
    gap: 12px;
  }
  .responsive-table tr {
    margin: 0;
  }
  .groups-grid {
    margin-top: 24px;
  }
}


/* Locked manager task view */
.task-title-readonly {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  overflow-wrap: anywhere;
}

.locked-task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 14px 0;
  clear: both;
}

.locked-field {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 12px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.locked-field span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.locked-field strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.locked-field em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.locked-field p {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
}

.locked-field-wide {
  grid-column: 1 / -1;
}

.manager-update-grid {
  grid-template-columns: minmax(180px, 260px) minmax(260px, 1fr);
  align-items: start;
}

@media (max-width: 760px) {
  .manager-update-grid {
    grid-template-columns: 1fr;
  }
}
