:root {
  --bg: #f7f3e8;
  --bg-2: #edf5ec;
  --surface: rgba(255, 253, 247, 0.9);
  --surface-solid: #fffdf7;
  --surface-2: #f0f7ed;
  --surface-3: #eef3f0;
  --paper: #fbf8ee;
  --text: #24342e;
  --muted: #66756c;
  --muted-2: #8b978f;
  --line: #d9e2d7;
  --line-soft: #e8eee5;
  --forest: #2f6b4f;
  --forest-2: #3f7d58;
  --eucalyptus: #6ea27a;
  --water: #8fc5c1;
  --sky: #c8dfe0;
  --sand: #ead8a8;
  --clay: #d7a38a;
  --moss: #c9dbb8;
  --green: #3f7d58;
  --green-soft: #e3f1df;
  --amber: #9a6a12;
  --amber-soft: #fff0c9;
  --red: #9f4f43;
  --red-soft: #f5ded8;
  --cyan: #2f7477;
  --cyan-soft: #dceeee;
  --shadow: 0 18px 42px rgba(59, 78, 63, 0.1);
  --shadow-soft: 0 10px 24px rgba(59, 78, 63, 0.07);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --sidebar: 264px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
html {
  background:
    radial-gradient(
      circle at 10% -8%,
      rgba(201, 219, 184, 0.7),
      transparent 34rem
    ),
    radial-gradient(
      circle at 90% 0%,
      rgba(200, 223, 224, 0.68),
      transparent 32rem
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
body {
  min-height: 100vh;
  color: var(--text);
  font-family:
    "IBM Plex Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  letter-spacing: -0.006em;
  background:
    linear-gradient(rgba(47, 107, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 79, 0.035) 1px, transparent 1px),
    transparent;
  background-size: 36px 36px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(234, 216, 168, 0.28),
      transparent 24rem
    ),
    radial-gradient(
      circle at 80% 78%,
      rgba(143, 197, 193, 0.18),
      transparent 26rem
    );
  opacity: 0.9;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  border: 0;
}
:focus-visible {
  outline: 3px solid rgba(47, 107, 79, 0.28);
  outline-offset: 2px;
}
::selection {
  background: rgba(143, 197, 193, 0.45);
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(237, 245, 234, 0.96),
    rgba(248, 245, 236, 0.92)
  );
  box-shadow: 12px 0 30px rgba(67, 87, 66, 0.05);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(47, 107, 79, 0.16);
  background: rgba(255, 253, 247, 0.72);
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px 18px 16px 22px;
  background: linear-gradient(135deg, #d9e8cf 0%, #6ea27a 58%, #2f6b4f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 22px rgba(47, 107, 79, 0.18);
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 30px;
  left: 11px;
  top: 7px;
  border-radius: 22px 2px 22px 2px;
  background: rgba(255, 253, 247, 0.86);
  transform: rotate(38deg);
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1.5px;
  left: 8px;
  top: 24px;
  background: rgba(47, 107, 79, 0.56);
  transform: rotate(-35deg);
  border-radius: 999px;
}
.brand h1 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.sidebar-group {
  margin: 22px 0;
}
.sidebar-label {
  margin: 0 10px 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
}
.nav-list {
  display: grid;
  gap: 6px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--muted);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}
.nav-item:hover {
  color: var(--forest);
  background: rgba(255, 253, 247, 0.72);
  border-color: var(--line-soft);
}
.nav-item.active {
  color: var(--forest);
  background: #fff7df;
  border-color: #ddcf95;
  box-shadow: inset 4px 0 0 var(--forest);
}
.nav-item .meta {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.07);
  color: var(--muted);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
}
.nav-item.active .meta {
  background: rgba(47, 107, 79, 0.12);
  color: var(--forest);
}
.sidebar-footer {
  margin-top: 24px;
  padding: 15px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(227, 241, 223, 0.96),
    rgba(255, 248, 223, 0.55)
  );
  border: 1px solid rgba(63, 125, 88, 0.22);
}
.sidebar-footer strong {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--forest);
}
.sidebar-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.main {
  min-width: 0;
  padding: 28px;
}
.topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.search,
.context-pill,
.chip,
.button,
.select,
.input {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
  color: var(--text);
  border-radius: 14px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  padding: 10px 13px;
  box-shadow: 0 8px 18px rgba(59, 78, 63, 0.05);
}
.kbd {
  padding: 3px 7px;
  border-radius: 7px;
  background: #eef3e8;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-family: "IBM Plex Mono", monospace;
}
.search input {
  flex: 1;
  min-width: 120px;
  background: transparent;
  border: 0;
  color: var(--text);
  outline: none;
}
.search input::placeholder,
.input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}
.context-pill,
.chip {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  background: #f2f7ef;
  border-color: rgba(47, 107, 79, 0.26);
  box-shadow: 0 8px 18px rgba(59, 78, 63, 0.07);
}
.button.primary {
  background: var(--forest);
  color: #fffdf7;
  border-color: var(--forest);
  box-shadow: 0 14px 26px rgba(47, 107, 79, 0.18);
}
.button.primary:hover {
  background: #285c45;
  border-color: #285c45;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 24px;
}
.page-header h2 {
  max-width: 1050px;
  margin: 8px 0 0;
  color: var(--text);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.page-header p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.65;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.card.pad {
  padding: 20px;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
}
.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.metric-value {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--forest);
}
.metric-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid transparent;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.badge.green {
  background: var(--green-soft);
  color: var(--green);
  border-color: #bdd9bd;
}
.badge.amber {
  background: var(--amber-soft);
  color: var(--amber);
  border-color: #ead28d;
}
.badge.red {
  background: var(--red-soft);
  color: var(--red);
  border-color: #e4b8ad;
}
.badge.cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
  border-color: #b8d8d8;
}
.badge.gray {
  background: #f3f0e8;
  color: var(--muted);
  border-color: var(--line);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}
.dashboard-data-grid {
  margin-top: 18px;
}
.dashboard-kpis-inline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.subgrid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.subgrid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.section-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.mini-chart {
  height: 220px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(241, 247, 239, 0.92),
    rgba(255, 253, 247, 0.74)
  );
  border: 1px solid var(--line-soft);
}
.timeline-list,
.task-list,
.activity-list,
.stack {
  display: grid;
  gap: 12px;
}
.stack.compact {
  gap: 10px;
}
.list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.6);
}
.list-item h4,
.list-item p {
  margin: 0;
}
.list-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.list-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 6px;
}
.kpi-ring {
  width: 132px;
  height: 132px;
  margin: 12px auto 0;
  position: relative;
}
.kpi-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.kpi-ring strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  letter-spacing: -0.05em;
  color: var(--forest);
}

.panel-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) 360px;
  gap: 18px;
}
.filter-panel,
.detail-panel {
  display: grid;
  gap: 12px;
  align-self: start;
}
.input,
.select,
textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.86);
  color: var(--text);
  border-radius: 14px;
  outline: none;
}
select.select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.field {
  display: grid;
  gap: 8px;
}
.field + .field {
  margin-top: 12px;
}
.field label {
  font-size: 12px;
  color: var(--muted);
}
.filter-block {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 253, 247, 0.68);
}
.filter-block h4 {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--forest);
}
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.toggle {
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 253, 247, 0.72);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.toggle.active {
  color: var(--forest);
  border-color: rgba(47, 107, 79, 0.28);
  background: #edf6e8;
}
.map-shell {
  display: grid;
  gap: 16px;
}
.plant-canvas {
  position: relative;
  min-height: 720px;
  border-radius: 26px;
  border: 1px solid #d6dfd1;
  background:
    linear-gradient(rgba(47, 107, 79, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 79, 0.055) 1px, transparent 1px),
    #fbf8ee;
  background-size: 44px 44px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    var(--shadow-soft);
}
.plant-canvas::after {
  content: "planta técnica · camada ambiental";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(47, 107, 79, 0.42);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.zone,
.hotspot {
  position: absolute;
  border-radius: 18px;
}
.zone {
  border: 1px dashed rgba(47, 107, 79, 0.28);
  background: rgba(255, 253, 247, 0.62);
  color: var(--muted);
  font-size: 12px;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.zone-storage {
  background: rgba(234, 216, 168, 0.3);
}
.zone-utilities {
  background: rgba(200, 223, 224, 0.34);
}
.zone-chemicals {
  background: rgba(215, 163, 138, 0.26);
}
.zone-production {
  background: rgba(227, 241, 223, 0.32);
}
.zone-water {
  background: rgba(143, 197, 193, 0.26);
}
.zone-waste {
  background: rgba(201, 219, 184, 0.3);
}
.hotspot {
  width: 18px;
  height: 18px;
  border: 3px solid #fffdf7;
  box-shadow:
    0 0 0 7px rgba(47, 107, 79, 0.08),
    0 8px 18px rgba(47, 107, 79, 0.18);
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.hotspot:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 0 9px rgba(47, 107, 79, 0.1),
    0 10px 22px rgba(47, 107, 79, 0.22);
}
.hotspot.green {
  background: var(--green);
}
.hotspot.amber {
  background: #d7a640;
}
.hotspot.red {
  background: var(--red);
}
.hotspot.cyan {
  background: var(--cyan);
}
.legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.06);
}

.table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}
th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
th {
  background: #f1f6ee;
  color: var(--forest);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
}
td {
  font-size: 14px;
}
tr[data-drawer]:hover {
  background: #f7fbf3;
  cursor: pointer;
}
.drawer {
  position: sticky;
  top: 26px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
  align-self: start;
}
.drawer h3 {
  margin: 10px 0 8px;
  color: var(--text);
}
.drawer p {
  color: var(--muted);
  line-height: 1.6;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.info-box {
  padding: 12px;
  border-radius: 16px;
  background: rgba(241, 247, 239, 0.76);
  border: 1px solid var(--line-soft);
}
.info-box small {
  color: var(--muted-2);
  display: block;
  margin-bottom: 5px;
}
.info-box strong {
  color: var(--text);
}

.checklist-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}
.step-list {
  display: grid;
  gap: 10px;
}
.step-item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 253, 247, 0.62);
}
.step-item strong {
  color: var(--text);
}
.step-item.active {
  border-color: #b8d5b3;
  background: #eaf4e6;
  color: var(--forest);
  box-shadow: inset 4px 0 0 var(--forest);
}
.question-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--eucalyptus);
  background: #fffdf7;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.question-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.question-head h4 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.4;
}
.segmented {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.segmented button {
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.82);
  color: var(--muted);
  cursor: pointer;
}
.segmented button:hover {
  border-color: rgba(47, 107, 79, 0.3);
  background: #f4f8f1;
}
.segmented button.active {
  background: #e3f1df;
  border-color: #bdd9bd;
  color: var(--forest);
}
.progress {
  height: 10px;
  background: rgba(47, 107, 79, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forest), var(--water));
}
.bottom-bar {
  position: sticky;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 36px rgba(59, 78, 63, 0.14);
  backdrop-filter: blur(14px);
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.kanban-col {
  padding: 15px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(241, 247, 239, 0.74);
  min-height: 600px;
  box-shadow: var(--shadow-soft);
}
.kanban-col h3 {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--forest);
}
.kanban-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--sand);
  background: #fffdf7;
  box-shadow: 0 10px 24px rgba(59, 78, 63, 0.08);
  margin-bottom: 12px;
}
.kanban-card h4 {
  margin: 10px 0 8px;
  font-size: 14px;
  line-height: 1.35;
}
.kanban-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.public-lead {
  display: grid;
  gap: 10px;
}
.public-lead .list-item {
  cursor: pointer;
}
.footer-note {
  margin-top: 26px;
  color: var(--muted-2);
  font-size: 12px;
}

@media (max-width: 1320px) {
  .grid.metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-layout,
  .split,
  .panel-grid,
  .checklist-layout,
  .subgrid-3 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .dashboard-kpis-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kanban {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .drawer {
    position: relative;
    top: auto;
  }
}
@media (max-width: 1024px) {
  .app-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: relative;
    height: auto;
  }
}
@media (max-width: 760px) {
  .main {
    padding: 18px;
  }
  .grid.metrics,
  .subgrid-2,
  .subgrid-3,
  .kanban,
  .dashboard-kpis-inline {
    grid-template-columns: 1fr;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .topbar-left,
  .topbar-right {
    align-items: stretch;
  }
  .search {
    min-width: 100%;
  }
  .bottom-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .progress {
    width: 100% !important;
  }
}
