body.app-body .app-layout,
body.app-body .app-main,
body.app-body .app-sidebar,
body.app-body .app-topbar-stack,
body.app-body .overview-grid,
body.app-body .profile-grid,
body.app-body .task-detail-layout,
body.app-body .project-detail-grid,
body.app-body .stack-grid,
body.app-body .project-detail-sidebar {
  align-items: start;
  align-content: start;
  grid-auto-rows: min-content;
}

/* Taskerro dashboard/task UI sync from the latest Taskmanly design pass. */
body.app-body .overview-hero-grid {
  align-items: stretch;
  grid-auto-rows: minmax(0, auto);
}

body.app-body .overview-hero-grid > .surface-card,
body.app-body .focus-card,
body.app-body .quick-add-card {
  align-self: stretch;
  height: 100%;
}

body.app-body .focus-card {
  display: flex;
  flex-direction: column;
}

body.app-body .overview-hero-grid > .focus-card {
  height: clamp(430px, 36vw, 520px);
  max-height: 520px;
  overflow: hidden;
}

body.app-body .focus-card .surface-card__head,
body.app-body .focus-card__metrics {
  flex: 0 0 auto;
}

body.app-body .focus-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

body.app-body .focus-list::-webkit-scrollbar,
body.app-body .gantt-board-shell::-webkit-scrollbar,
body.app-body .task-table-shell::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.app-body .focus-list::-webkit-scrollbar-thumb,
body.app-body .gantt-board-shell::-webkit-scrollbar-thumb,
body.app-body .task-table-shell::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(111, 143, 197, 0.26);
}

body.app-body .empty-state--compact {
  margin-top: auto;
}

body.app-body .overview-insights-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body.app-body .overview-insights-grid > .overview-chart-card {
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

body.app-body .date-picker {
  position: relative;
  width: 100%;
}

body.app-body .date-picker__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.97));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

body.app-body .date-picker__control:hover,
body.app-body .date-picker.is-open .date-picker__control {
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.1);
}

body.app-body .date-picker__calendar-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(47, 140, 255, 0.75);
  border-radius: 5px;
}

body.app-body .date-picker__calendar-icon::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 4px;
  border-top: 2px solid rgba(47, 140, 255, 0.75);
}

body.app-body .date-picker__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 120;
  width: min(316px, calc(100vw - 32px));
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(var(--date-picker-shift-x, 0)) translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity var(--transition), transform var(--transition);
}

body.app-body .date-picker.is-align-right .date-picker__panel {
  right: 0;
  left: auto;
  transform-origin: top right;
}

body.app-body .date-picker.is-open .date-picker__panel {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(var(--date-picker-shift-x, 0)) translateY(0) scale(1);
}

body.app-body .date-picker__header,
body.app-body .date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.app-body .date-picker__header strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

body.app-body .date-picker__nav,
body.app-body .date-picker__footer button {
  border: 0;
  background: rgba(232, 240, 255, 0.88);
  color: var(--accent-strong);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

body.app-body .date-picker__nav {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 22px;
  line-height: 1;
}

body.app-body .date-picker__weekdays,
body.app-body .date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

body.app-body .date-picker__weekdays {
  margin: 14px 0 8px;
}

body.app-body .date-picker__weekdays span {
  color: #8a96aa;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

body.app-body .date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #25304a;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

body.app-body .date-picker__day:hover {
  background: rgba(47, 140, 255, 0.1);
  color: var(--accent-strong);
}

body.app-body .date-picker__day.is-muted {
  color: #b2bbca;
}

body.app-body .date-picker__day.is-today {
  box-shadow: inset 0 0 0 1px rgba(47, 140, 255, 0.3);
}

body.app-body .date-picker__day.is-selected {
  background: linear-gradient(180deg, #38a0ff, var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(47, 140, 255, 0.22);
}

body.app-body .date-picker__footer {
  margin-top: 12px;
}

body.app-body .date-picker__footer button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 12px;
}

body.app-body .quick-add-card .field select {
  min-height: 54px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(47, 140, 255, 0.85) 50%) right 20px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(47, 140, 255, 0.85) 50%, transparent 50%) right 15px center / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.97));
  color: var(--text);
  font-weight: 400;
  box-shadow: none;
  cursor: pointer;
}

body.app-body .quick-add-card .field select:hover,
body.app-body .quick-add-card .field select:focus {
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.1);
}

body.app-body .quick-fab {
  right: max(30px, env(safe-area-inset-right));
  bottom: max(30px, env(safe-area-inset-bottom));
  display: block;
  width: 64px;
  height: 64px;
  gap: 12px;
  z-index: 900;
}

body.app-body .quick-fab__trigger {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 46px rgba(26, 109, 255, 0.34);
}

body.app-body .quick-fab__trigger span {
  display: block;
  transition: transform var(--transition);
}

body.app-body .quick-fab.is-open .quick-fab__trigger {
  transform: none;
}

body.app-body .quick-fab.is-open .quick-fab__trigger span {
  transform: translateY(-1px) rotate(45deg);
}

body.app-body.date-picker-open .quick-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
}

body.app-body .quick-fab__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  min-width: 270px;
  padding: 14px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(50, 70, 120, 0.18);
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
}

body.app-body .quick-fab.is-open .quick-fab__menu {
  transform: translateY(0) scale(1);
}

body.app-body .quick-fab__item {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(244, 248, 255, 0.92);
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

body.app-body .quick-fab__item:hover {
  background: rgba(232, 241, 255, 0.98);
  color: var(--accent-strong);
}

body.app-body .quick-fab__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(47, 140, 255, 0.12);
  color: var(--accent-strong);
}

body.app-body .kanban-column-surface {
  min-height: 0;
}

body.app-body .kanban-column-surface__body {
  min-height: 360px;
}

body.app-body .kanban-task {
  touch-action: none;
}

body.app-body .kanban-task__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.app-body .kanban-task__actions a {
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(47, 140, 255, 0.1);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

body.app-body .kanban-task__actions a:hover {
  background: rgba(47, 140, 255, 0.16);
}

body.app-body .gantt-board-shell {
  max-width: 100%;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-gutter: stable;
}

body.app-body .gantt-board {
  --gantt-meta-width: 300px;
  --gantt-day-width: 52px;
  display: grid;
  width: max-content;
  min-width: calc(var(--gantt-meta-width) + var(--gantt-timeline-width));
  gap: 0;
  overflow: visible;
  border: 1px solid rgba(18, 28, 45, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(66, 92, 148, 0.08);
}

body.app-body .gantt-board__header,
body.app-body .gantt-entry {
  display: grid;
  grid-template-columns: var(--gantt-meta-width) var(--gantt-timeline-width);
  gap: 0;
}

body.app-body .gantt-board__meta,
body.app-body .gantt-entry__meta {
  position: sticky;
  left: 0;
  z-index: 5;
  border: 0;
  border-right: 1px solid rgba(209, 219, 236, 0.82);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 16px 0 24px rgba(67, 90, 138, 0.08);
}

body.app-body .gantt-board__meta {
  z-index: 7;
  border-bottom: 1px solid rgba(209, 219, 236, 0.82);
}

body.app-body .gantt-board__timeline,
body.app-body .gantt-entry__timeline {
  display: grid;
  grid-template-columns: repeat(var(--gantt-columns), var(--gantt-day-width));
  border: 0;
  border-radius: 0;
  background: rgba(253, 254, 255, 0.98);
}

body.app-body .gantt-board__timeline {
  border-bottom: 1px solid rgba(209, 219, 236, 0.82);
}

body.app-body .gantt-day-head {
  min-width: var(--gantt-day-width);
  padding: 13px 4px 14px;
}

body.app-body .gantt-day-head.is-today {
  background: linear-gradient(180deg, rgba(232, 241, 255, 0.96), rgba(255, 255, 255, 0.98));
}

body.app-body .gantt-day-head.is-today strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #38a0ff, var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(47, 140, 255, 0.2);
}

body.app-body .gantt-entry {
  min-height: 78px;
  border-bottom: 1px solid rgba(209, 219, 236, 0.62);
}

body.app-body .gantt-entry:last-child {
  border-bottom: 0;
}

body.app-body .gantt-entry__meta {
  align-content: center;
  gap: 8px;
  min-height: 78px;
  padding: 14px 16px;
}

body.app-body .gantt-entry__timeline {
  min-height: 78px;
  overflow: visible;
}

body.app-body .gantt-entry--empty {
  min-height: 180px;
}

body.app-body .gantt-entry__meta--empty {
  align-content: center;
}

body.app-body .gantt-entry__meta--empty strong {
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0;
}

body.app-body .gantt-entry__grid {
  grid-template-columns: repeat(var(--gantt-columns), var(--gantt-day-width));
}

body.app-body .gantt-entry__bar {
  min-width: 28px;
  height: 32px;
  padding: 0 12px;
  background: linear-gradient(180deg, #38a0ff 0%, var(--gantt-accent, #2f8cff) 100%);
  box-shadow: 0 12px 22px rgba(47, 140, 255, 0.24);
}

body.app-body .gantt-entry__bar.is-single-day {
  justify-content: center;
  padding: 0;
}

body.app-body .gantt-entry__bar.is-single-day::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
}

body.app-body .gantt-empty-grid {
  min-width: calc(var(--gantt-meta-width) + var(--gantt-timeline-width));
}

body.app-body .task-table-card {
  overflow: hidden;
}

body.app-body .task-table-shell {
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
}

body.app-body .task-table {
  min-width: 1180px;
  overflow: hidden;
  border: 1px solid rgba(18, 28, 45, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
}

body.app-body .task-table__row {
  display: grid;
  grid-template-columns:
    minmax(270px, 1.55fr)
    minmax(150px, 0.8fr)
    minmax(190px, 1fr)
    112px
    124px
    140px
    122px
    210px;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(209, 219, 236, 0.72);
}

body.app-body .task-table__row:last-child {
  border-bottom: 0;
}

body.app-body .task-table__row--head {
  min-height: 48px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(255, 255, 255, 0.98));
  color: #7b88a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.app-body .task-table__row--head button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

body.app-body .task-table__row--head button::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.28;
  transform: translateY(1px);
}

body.app-body .task-table__row--head button.is-sorted {
  color: var(--accent-strong);
}

body.app-body .task-table__row--head button.is-sorted[data-sort-direction="asc"]::after {
  border-top: 0;
  border-bottom: 5px solid currentColor;
  opacity: 0.9;
}

body.app-body .task-table__row--head button.is-sorted[data-sort-direction="desc"]::after {
  opacity: 0.9;
}

body.app-body .task-table__row[draggable="true"] {
  cursor: grab;
}

body.app-body .task-table__row.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

body.app-body .task-table__task,
body.app-body .task-table__project,
body.app-body .task-table__assignee,
body.app-body .task-table__date,
body.app-body .task-table__actions {
  display: flex;
  align-items: center;
  min-width: 0;
}

body.app-body .task-table__task {
  gap: 12px;
}

body.app-body .task-table__handle {
  flex: 0 0 auto;
  width: 14px;
  height: 22px;
  opacity: 0.45;
  background-image: radial-gradient(circle, #9badca 1.5px, transparent 1.5px);
  background-size: 7px 7px;
  cursor: grab;
  touch-action: none;
}

body.app-body .task-table__handle:active {
  cursor: grabbing;
}

body.app-body.is-task-row-pointer-dragging,
body.app-body.is-kanban-pointer-dragging {
  user-select: none;
}

body.app-body .task-table__task-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

body.app-body .task-table__task-copy strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.25;
}

body.app-body .task-table__task-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.app-body .task-table__project,
body.app-body .task-table__assignee,
body.app-body .task-table__date {
  gap: 9px;
  color: #53617a;
  font-size: 13px;
  font-weight: 800;
}

body.app-body .task-table__project span:last-child,
body.app-body .task-table__assignee span:last-child,
body.app-body .task-table__date span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.app-body .task-table__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--task-dot, #2f8cff);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.1);
}

body.app-body .task-table__avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 241, 255, 0.96), rgba(214, 229, 255, 0.92));
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
}

body.app-body .task-table__progress .task-progress__head {
  justify-content: flex-start;
}

body.app-body .task-table__progress .task-progress__head strong {
  font-size: 12px;
}

body.app-body .task-table__actions {
  flex-wrap: wrap;
  gap: 8px;
}

body.app-body .task-table__actions form {
  margin: 0;
}

body.app-body .task-table__actions .button {
  min-height: 34px;
  padding: 0 12px;
}

body.app-body .task-table__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.app-body .modal-card--task {
  width: min(860px, calc(100vw - 28px));
  overflow: visible;
  border-radius: 26px;
}

body.app-body .modal-layer {
  overflow-y: auto;
}

body.app-body .task-form {
  gap: 12px;
  margin-top: 16px;
}

body.app-body .task-form .field-grid {
  gap: 12px;
}

body.app-body .task-form .field textarea {
  min-height: 92px;
}

body.app-body .task-form .field select[multiple] {
  min-height: 104px;
}

body.app-body .task-form .field__hint {
  margin-top: -2px;
}

body.app-body .task-form .field span:first-child {
  color: #53617a;
  font-size: 12px;
  font-weight: 900;
}

body.app-body .field-control {
  position: relative;
  display: block;
}

body.app-body .field-control > svg {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  width: 19px;
  height: 19px;
  color: #53617a;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
  pointer-events: none;
}

body.app-body .field-control--textarea > svg {
  top: 17px;
  transform: none;
}

body.app-body .field-control--icon input,
body.app-body .field-control--icon select,
body.app-body .field-control--icon textarea {
  width: 100%;
  padding-left: 48px;
}

body.app-body .task-form .field-control--icon textarea {
  padding-top: 15px;
}

body.app-body .task-form select {
  min-height: 54px;
  font-weight: 500;
}

body.app-body .task-form .date-picker__control {
  min-height: 54px;
  border-radius: 14px;
  color: #53617a;
  font-weight: 500;
}

body.app-body .task-file-control {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  border: 1px dashed rgba(83, 105, 145, 0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
}

body.app-body .task-file-control__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 100%;
  color: var(--accent-strong);
}

body.app-body .task-file-control__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.app-body .task-file-control input[type="file"] {
  min-height: 56px;
  padding: 10px 12px 10px 0;
  border: 0;
  background: transparent;
}

body.app-body .calendar-day {
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 176px;
  max-height: 214px;
  overflow: hidden;
}

body.app-body .calendar-day__tasks {
  min-height: 0;
  padding-right: 2px;
}

body.app-body .calendar-day__tasks.is-scrollable {
  max-height: 142px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.app-body .calendar-day__tasks.is-scrollable::-webkit-scrollbar,
body.app-body .notes-grid--scroll::-webkit-scrollbar {
  width: 7px;
}

body.app-body .calendar-day__tasks.is-scrollable::-webkit-scrollbar-thumb,
body.app-body .notes-grid--scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(111, 143, 197, 0.28);
}

body.app-body .calendar-chip {
  min-height: 46px;
}

body.app-body .quick-notes-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  align-items: stretch;
}

body.app-body .notes-card--composer,
body.app-body .notes-card--list {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  max-height: 430px;
}

body.app-body .notes-card__composer {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

body.app-body .notes-card__composer textarea {
  flex: 1 1 auto;
  min-height: 138px;
}

body.app-body .notes-card__pin-toggle {
  justify-content: flex-start;
}

body.app-body .notes-grid--scroll {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

body.app-body .notes-card--list .empty-state {
  flex: 1 1 auto;
}

@media (max-width: 1279px) {
  body.app-body .quick-notes-grid {
    grid-template-columns: 1fr;
  }

  body.app-body .notes-card--composer,
  body.app-body .notes-card--list {
    max-height: none;
  }

  body.app-body .notes-card--list {
    min-height: 360px;
    max-height: 430px;
  }
}

@media (max-width: 767px) {
  body.app-body .overview-hero-grid > .focus-card {
    height: auto;
    max-height: none;
  }

  body.app-body .focus-list {
    max-height: 360px;
  }

  body.app-body .gantt-board {
    --gantt-meta-width: 250px;
    --gantt-day-width: 46px;
  }

  body.app-body .task-table {
    min-width: 1060px;
  }

  body.app-body .task-form {
    width: min(100%, calc(100vw - 28px));
  }

  body.app-body .notes-card--composer,
  body.app-body .notes-card--list {
    min-height: 0;
    max-height: none;
  }

  body.app-body .notes-grid--scroll {
    max-height: 360px;
  }

  body.app-body .calendar-day {
    max-height: 190px;
  }

  body.app-body .quick-fab {
    right: 18px;
    bottom: 18px;
  }

  body.app-body .quick-fab__menu {
    min-width: min(270px, calc(100vw - 36px));
  }

  body.app-body .date-picker__panel {
    right: 0;
    left: auto;
    transform-origin: top right;
  }
}

body.app-body .overview-grid--megakassa {
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  align-items: start;
}

body.app-body .megakassa-order-id {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

body.app-body .megakassa-status-card {
  display: grid;
  gap: 18px;
}

body.app-body .megakassa-status-indicator {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(47, 140, 255, 0.12);
  border-radius: 18px;
  background: rgba(241, 247, 255, 0.92);
}

body.app-body .megakassa-status-indicator__pulse {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2f8cff;
}

body.app-body .megakassa-status-indicator.is-pending .megakassa-status-indicator__pulse {
  box-shadow: 0 0 0 0 rgba(47, 140, 255, 0.35);
  animation: megakassa-status-pulse 1.8s ease-out infinite;
}

body.app-body .megakassa-status-indicator.is-final .megakassa-status-indicator__pulse {
  background: #22a06b;
}

body.app-body .megakassa-status-indicator strong {
  display: block;
  margin-bottom: 5px;
}

body.app-body .megakassa-status-indicator p {
  margin: 0;
  color: #6c7890;
  line-height: 1.55;
}

@keyframes megakassa-status-pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(47, 140, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 140, 255, 0);
  }
}

@media (max-width: 1023px) {
  body.app-body .overview-grid--megakassa {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.app-body .megakassa-status-indicator.is-pending .megakassa-status-indicator__pulse {
    animation: none;
  }
}

body.app-body .surface-card,
body.app-body .stat-card,
body.app-body .quick-add-card,
body.app-body .focus-card,
body.app-body .week-widget,
body.app-body .kanban-column-surface {
  align-self: start;
}

body.app-body .task-detail-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

body.app-body .project-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

body.app-body .task-context-card__meta,
body.app-body .workspace-status-card__meta,
body.app-body .entity-card__meta--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

body.app-body .task-context-card__meta span,
body.app-body .workspace-status-card__meta span,
body.app-body .entity-card__meta--grid span {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 24, 42, 0.05);
}

body.app-body .project-task-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

body.app-body .project-task-row__meta {
  min-width: 132px;
  justify-content: flex-start;
  align-content: start;
}

body.app-body .deliverable-list,
body.app-body .project-task-list,
body.app-body .comment-list,
body.app-body .subtask-list,
body.app-body .member-list,
body.app-body .invite-list {
  gap: 12px;
}

body.app-body .deliverable-card,
body.app-body .project-task-row,
body.app-body .comment-item,
body.app-body .subtask-item,
body.app-body .member-card,
body.app-body .invite-card {
  border-radius: 20px;
}

body.app-body .profile-grid .stack-grid--compact {
  gap: 14px;
}

body.app-body .profile-grid .admin-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.app-body .profile-grid .stack-list {
  gap: 10px;
}

body.app-body .profile-grid .stack-list__item {
  padding: 14px 16px;
}

body.app-body .team-form-card,
body.app-body .project-detail-sidebar > .surface-card,
body.app-body .task-detail-layout > .surface-card,
body.app-body .task-detail-layout > .stack-grid > .surface-card {
  min-height: 0;
}

body.app-body .project-detail-sidebar,
body.app-body .task-detail-layout > .stack-grid {
  gap: 14px;
}

/* Keep the global app sidebar aligned with the main content on every page.
   Sticky behavior is preserved only for page-local side stacks like profile. */
body.app-body .app-layout {
  align-items: start;
}

body.app-body .app-layout > .app-sidebar,
body.app-body .app-layout > .app-main {
  align-self: start;
  margin-top: 0;
}

body.app-body .app-sidebar {
  position: static;
  top: auto;
  margin-top: 0;
}

@media (max-width: 1279px) {
  body.app-body .task-detail-layout,
  body.app-body .project-detail-grid,
  body.app-body .profile-grid {
    grid-template-columns: 1fr;
  }

  body.app-body .task-context-card__meta,
  body.app-body .workspace-status-card__meta,
  body.app-body .entity-card__meta--grid,
  body.app-body .profile-grid .admin-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.app-body .project-task-row {
    grid-template-columns: 1fr;
  }

  body.app-body .project-task-row__meta {
    min-width: 0;
    justify-content: flex-start;
  }
}

body.app-body .overview-grid--team-insights {
  margin-bottom: 14px;
}

body.app-body .team-pulse-meta,
body.app-body .profile-pulse-chart {
  margin-top: 14px;
}

body.app-body .team-balance-note,
body.app-body .profile-pulse-note {
  margin-top: 14px;
}

body.app-body .surface-card__head--flush {
  margin-bottom: 12px;
}

body.app-body .task-detail-layout > .stack-grid {
  align-content: start;
}


body.app-body .overview-grid--clients,
body.app-body .overview-grid--referrals {
  margin-bottom: 14px;
}

body.app-body .clients .entity-card,
body.app-body .overview-grid--clients .surface-card,
body.app-body .overview-grid--referrals .surface-card {
  min-height: 0;
}

body.app-body .project-detail-sidebar > .surface-card .mini-bar-chart,
body.app-body .task-detail-layout > .stack-grid > .surface-card .mini-bar-chart,
body.app-body .overview-grid--referrals .mini-bar-chart,
body.app-body .overview-grid--clients .mini-bar-chart {
  margin-top: 12px;
}

body.app-body .task-detail-layout > .stack-grid > .surface-card .entity-card__meta--grid,
body.app-body .project-detail-sidebar > .surface-card .entity-card__meta--grid {
  margin-top: 14px;
}

body.app-body .field.is-hidden {
  display: none !important;
}

body.app-body .app-sidebar__avatar-form {
  margin: 0;
}

body.app-body .app-sidebar__avatar-form .button {
  width: 100%;
}

body.app-body .calendar-chip--task {
  --calendar-accent: #2f8cff;
}

body.app-body .calendar-chip--project-start {
  --calendar-accent: #37ba88;
}

body.app-body .calendar-chip--project-deadline {
  --calendar-accent: #ff8b6a;
}

body.app-body .calendar-badge--start {
  color: #117a57;
  background: rgba(55, 186, 136, 0.16);
}

body.app-body .calendar-badge--deadline {
  color: #b24a2e;
  background: rgba(255, 139, 106, 0.16);
}

body.app-body .calendar-badge--task {
  color: #2858d8;
  background: rgba(47, 140, 255, 0.14);
}

body.app-body .provider-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

body.app-body .provider-config-grid--sortable {
  grid-template-columns: minmax(0, 1fr);
}

body.app-body .provider-config-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
}

body.app-body .provider-config-card--sortable {
  min-height: auto;
  cursor: grab;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

body.app-body .provider-config-card--sortable:active {
  cursor: grabbing;
}

body.app-body .provider-config-card--sortable.is-dragging {
  opacity: 0.58;
  transform: scale(0.995);
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 18px 40px rgba(35, 71, 142, 0.16);
}

body.app-body .provider-config-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.app-body .provider-config-card__head h3 {
  margin: 0 0 6px;
}

body.app-body .provider-config-card__head > div:not(.provider-config-card__actions) {
  min-width: 0;
  flex: 1 1 auto;
}

body.app-body .provider-drag-handle {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(120, 138, 173, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.app-body .provider-drag-handle span,
body.app-body .provider-drag-handle span::before,
body.app-body .provider-drag-handle span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #8b99b5;
}

body.app-body .provider-drag-handle span {
  position: relative;
}

body.app-body .provider-drag-handle span::before,
body.app-body .provider-drag-handle span::after {
  content: "";
  position: absolute;
  left: 0;
}

body.app-body .provider-drag-handle span::before {
  top: -6px;
}

body.app-body .provider-drag-handle span::after {
  top: 6px;
}

body.app-body .provider-config-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.app-body .megakassa-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.app-body .megakassa-method-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid rgba(120, 138, 173, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

body.app-body .megakassa-method-option.is-selected {
  border-color: rgba(47, 140, 255, 0.42);
  background: rgba(47, 140, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.08);
}

body.app-body .megakassa-method-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

body.app-body .megakassa-method-option__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body.app-body .megakassa-method-option__body strong,
body.app-body .megakassa-method-option__body small {
  overflow-wrap: anywhere;
}

body.app-body .megakassa-method-option__body strong {
  color: #182033;
  font-size: 14px;
}

body.app-body .megakassa-method-option__body small {
  color: #6f7a8f;
  font-size: 12px;
  line-height: 1.4;
}

body.app-body .provider-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: #526079;
  font-size: 0.88rem;
  font-weight: 800;
}

body.app-body .provider-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.app-body .provider-toggle__track {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #dfe7f4;
  border: 1px solid rgba(120, 138, 173, 0.2);
  transition: background 0.18s ease, border-color 0.18s ease;
}

body.app-body .provider-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 24, 42, 0.18);
  transition: transform 0.18s ease;
}

body.app-body .provider-toggle input:checked + .provider-toggle__track {
  background: linear-gradient(135deg, #2f8cff, #4f6dff);
  border-color: rgba(47, 140, 255, 0.44);
}

body.app-body .provider-toggle input:checked + .provider-toggle__track .provider-toggle__thumb {
  transform: translateX(22px);
}

body.app-body .provider-toggle input:focus-visible + .provider-toggle__track {
  outline: 3px solid rgba(47, 140, 255, 0.2);
  outline-offset: 3px;
}

body.app-body .provider-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

body.app-body .overview-grid--manual-payment {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  align-items: start;
}

body.app-body .manual-payment-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

body.app-body .manual-payment-timeline__step {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px 16px 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 24, 42, 0.06);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.96), rgba(243, 247, 255, 0.92));
}

body.app-body .manual-payment-timeline__step::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 6px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: rgba(47, 140, 255, 0.16);
}

body.app-body .manual-payment-timeline__step strong {
  font-size: 15px;
}

body.app-body .manual-payment-timeline__step span {
  color: #6c7890;
  font-size: 13px;
}

body.app-body .manual-payment-timeline__step.is-done {
  border-color: rgba(47, 140, 255, 0.18);
  background: linear-gradient(180deg, rgba(237, 245, 255, 0.98), rgba(231, 241, 255, 0.94));
}

body.app-body .manual-payment-timeline__step.is-done::before {
  background: linear-gradient(180deg, #7ab3ff 0%, #2f8cff 100%);
}

body.app-body .manual-requisites-card {
  display: grid;
  gap: 12px;
}

body.app-body .manual-requisites-card__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(245, 248, 255, 0.92);
  border: 1px solid rgba(15, 24, 42, 0.05);
}

body.app-body .manual-requisites-card__row span {
  color: #73809a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.app-body .manual-requisites-card__row strong {
  font-size: 16px;
  line-height: 1.45;
  word-break: break-word;
}

body.app-body .manual-requisites-card__link {
  justify-self: start;
  margin-top: 2px;
}

body.app-body .manual-payment-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

body.app-body [data-manual-timer-card] {
  gap: 6px;
  border-color: rgba(47, 140, 255, 0.18);
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.98), rgba(234, 243, 255, 0.95));
}

body.app-body [data-manual-timer-card] strong {
  font-variant-numeric: tabular-nums;
  color: #1557d6;
}

body.app-body [data-manual-timer-note] {
  color: #6f7b94;
  font-size: 12px;
  line-height: 1.45;
}

body.app-body .manual-admin-card {
  gap: 10px;
  padding: 16px 18px;
}

body.app-body .stack-grid--manual-admin {
  gap: 12px;
}

body.app-body .manual-admin-meta {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 6px;
}

body.app-body .manual-admin-meta span {
  min-height: 0;
  padding: 8px 10px;
  font-size: 11px;
}

body.app-body .manual-admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

body.app-body .manual-admin-requisites-form {
  grid-template-columns: minmax(96px, 0.45fr) minmax(180px, 1fr) minmax(140px, 0.7fr) minmax(180px, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-top: 0;
}

body.app-body .manual-admin-requisites-form .field,
body.app-body .manual-admin-review-form .field {
  gap: 5px;
}

body.app-body .manual-admin-requisites-form .field span,
body.app-body .manual-admin-review-form .field span {
  font-size: 11px;
}

body.app-body .manual-admin-requisites-form .field input,
body.app-body .manual-admin-review-form .field textarea {
  min-height: 42px;
  border-radius: 14px;
  font-size: 13px;
}

body.app-body .manual-admin-requisites-form .field input {
  padding: 0 12px;
}

body.app-body .manual-admin-requisites-form .button {
  min-height: 42px;
  white-space: nowrap;
}

body.app-body .manual-admin-review-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-top: 0;
}

body.app-body .manual-admin-review-form .field textarea {
  min-height: 72px;
  padding: 10px 12px;
}

body.app-body .manual-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

body.app-body .manual-admin-actions .button {
  flex: 1 1 130px;
  min-height: 40px;
  padding-inline: 14px;
}

body.app-body .manual-admin-card .surface-card__head {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

body.app-body .manual-admin-card .surface-card__head h3 {
  font-size: 18px;
}

body.app-body .manual-admin-card .surface-card__subtle {
  margin-top: 4px;
  font-size: 12px;
}

body.app-body .manual-admin-card .entity-card__meta {
  gap: 6px;
}

body.app-body .manual-admin-card .badge {
  min-height: 28px;
  padding: 0 9px;
  font-size: 11px;
}

body.app-body [data-manual-admin-page] .payments-chart-grid .surface-card--padded,
body.app-body [data-manual-admin-page] .manual-admin-filters {
  padding: 18px;
}

body.app-body [data-manual-admin-page] .payments-chart__bars {
  min-height: 170px;
}

body.app-body [data-manual-admin-page] .payments-chart__rail {
  height: 100px;
  border-radius: 14px;
}

@media (max-width: 1279px) {
  body.app-body .provider-config-grid,
  body.app-body .megakassa-method-grid,
  body.app-body .overview-grid--manual-payment {
    grid-template-columns: 1fr;
  }

  body.app-body .manual-admin-requisites-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.app-body .manual-admin-requisites-form .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body.app-body .manual-admin-review-form {
    grid-template-columns: 1fr;
  }

  body.app-body .manual-admin-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  body.app-body .site-header {
    position: sticky;
    top: 0;
  }

  body.app-body .site-header__inner {
    min-height: 62px;
  }

  body.app-body .app-shell {
    padding-top: 6px;
  }

  body.app-body .app-shell__glow {
    display: none;
  }

  body.app-body .app-layout,
  body.app-body .app-main,
  body.app-body .app-topbar-stack {
    margin-top: 0;
    padding-top: 0;
    gap: 10px;
  }

  body.app-body .app-layout > .app-main,
  body.app-body .app-layout > .app-sidebar,
  body.app-body .app-topbar-stack > :first-child,
  body.app-body .app-main > :first-child {
    margin-top: 0;
  }

  body.app-body .app-topbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.app-body .app-topbar h1 {
    font-size: 30px;
  }

  body.app-body .app-topbar p {
    margin-top: 4px;
  }

  body.app-body.app-nav-open {
    overflow: initial;
  }

  body.app-body .app-sidebar-backdrop,
  body.app-body .app-sidebar__close,
  body.app-body .app-nav-toggle {
    display: none !important;
  }

  body.app-body .app-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.app-body .app-layout > .app-sidebar {
    order: -1;
    position: static !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    transform: none !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
    border-radius: 28px !important;
    margin-top: 0 !important;
    box-shadow: var(--shadow-md);
  }

  body.app-body .app-sidebar.is-open {
    transform: none !important;
  }

  body.app-body .app-sidebar__head--centered,
  body.app-body .app-sidebar__profile-card,
  body.app-body .workspace-switcher,
  body.app-body .app-nav,
  body.app-body .app-sidebar__promo,
  body.app-body .app-sidebar__logout {
    margin-left: 0;
    margin-right: 0;
  }

  body.app-body .app-sidebar__logout {
    padding-bottom: 0;
  }
}

/* Keep the transferred dashboard/task rules last in the cascade. */
body.app-body .overview-hero-grid {
  align-items: stretch;
}

body.app-body .overview-hero-grid > .surface-card,
body.app-body .focus-card,
body.app-body .quick-add-card {
  align-self: stretch;
  height: 100%;
}

body.app-body .overview-hero-grid > .focus-card {
  height: clamp(430px, 36vw, 520px);
  max-height: 520px;
  overflow: hidden;
}

body.app-body .focus-card {
  display: flex;
  flex-direction: column;
}

body.app-body .focus-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

body.app-body .overview-insights-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body.app-body .overview-insights-grid > .overview-chart-card {
  height: 100%;
}

body.app-body .gantt-board-shell,
body.app-body .task-table-shell {
  max-width: 100%;
  overflow-x: auto;
}

body.app-body .gantt-board {
  width: max-content;
  min-width: calc(var(--gantt-meta-width) + var(--gantt-timeline-width));
}

body.app-body .gantt-board__meta,
body.app-body .gantt-entry__meta {
  position: sticky;
  left: 0;
}

body.app-body .quick-fab {
  right: max(30px, env(safe-area-inset-right));
  bottom: max(30px, env(safe-area-inset-bottom));
}

body.app-body .quick-fab__menu {
  right: 0;
  bottom: calc(100% + 14px);
  transform-origin: bottom right;
}

body.app-body .quick-notes-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

body.app-body .notes-card--composer,
body.app-body .notes-card--list {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  max-height: 430px;
}

body.app-body .notes-grid--scroll {
  overflow-y: auto;
}

body.app-body .calendar-day {
  max-height: 214px;
  overflow: hidden;
}

body.app-body .calendar-day__tasks.is-scrollable {
  max-height: 142px;
  overflow-y: auto;
}

body.app-body .quick-add-card .field select,
body.app-body .task-form select,
body.app-body .task-form .date-picker__control {
  font-weight: 500;
}

body.app-body .quick-add-card .field select {
  font-weight: 400;
}

@media (max-width: 1279px) {
  body.app-body .quick-notes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.app-body .overview-hero-grid > .focus-card {
    height: auto;
    max-height: none;
  }

  body.app-body .focus-list {
    max-height: 360px;
  }

  body.app-body .quick-fab {
    right: 18px;
    bottom: 18px;
  }
}
