:root {
  --bg: #f3f6fb;
  --bg-soft: #fbfcfe;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-muted: #f7f9fc;
  --text: #162033;
  --muted: #667085;
  --line: #d9e2ec;
  --line-strong: #c8d3df;
  --primary: #1f4b99;
  --primary-soft: #eaf1ff;
  --accent: #0f766e;
  --danger: #c2410c;
  --success: #15803d;
  --warning: #b45309;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.06);
  --radius: 5px;
  --board-column-bg: rgba(255, 255, 255, 0.92);
  --board-column-line: rgba(15, 23, 42, 0.08);
  --board-card-bg: #f7f9fc;
  --board-card-line: rgba(15, 23, 42, 0.08);
  --board-soft-line: rgba(15, 23, 42, 0.08);
  --board-drop-bg: rgba(31, 75, 153, 0.08);
  --board-unread-bg: linear-gradient(180deg, rgba(234, 241, 255, 0.82), #ffffff);
  --board-empty-bg: rgba(15, 23, 42, 0.03);
}

body[data-theme="dark"] {
  --bg: #0f172a;
  --bg-soft: #111b31;
  --surface: rgba(18, 29, 51, 0.9);
  --surface-solid: #15213a;
  --surface-muted: #10192b;
  --text: #ecf2ff;
  --muted: #99a6c2;
  --line: #26344d;
  --line-strong: #32425f;
  --primary: #8db3ff;
  --primary-soft: rgba(141, 179, 255, 0.12);
  --accent: #5eead4;
  --danger: #fdba74;
  --success: #86efac;
  --warning: #fde68a;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.24);
  --board-column-bg: rgba(16, 25, 43, 0.86);
  --board-column-line: rgba(255, 255, 255, 0.04);
  --board-card-bg: rgba(255, 255, 255, 0.06);
  --board-card-line: rgba(255, 255, 255, 0.06);
  --board-soft-line: rgba(255, 255, 255, 0.06);
  --board-drop-bg: rgba(255, 255, 255, 0.04);
  --board-unread-bg: linear-gradient(180deg, rgba(141, 179, 255, 0.12), rgba(255, 255, 255, 0.06));
  --board-empty-bg: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 75, 153, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  color: var(--text);
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(121, 135, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 135, 156, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
}

.overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.hidden {
  display: none !important;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.login-card,
.sidebar,
.content,
.panel-card,
.metric-card,
.task-card,
.planner-card,
.group-card,
.timeline-card,
.comment-card,
.modal-dialog,
.flash {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.login-card {
  width: min(100%, 460px);
  padding: 40px;
  border-radius: var(--radius);
  display: grid;
  gap: 28px;
}

.login-brand h1,
.brand-lockup h2,
.topbar h1,
.modal-header h3,
.section-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}

.login-brand p,
.brand-lockup p,
.session-label,
.meta-text,
.helper-text,
.empty-note,
.timeline-time,
.comment-time,
.login-note {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label,
.field-block {
  display: grid;
  gap: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--text);
  border-radius: var(--radius);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 75, 153, 0.08);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.primary-button,
.secondary-button,
.text-button,
.nav-item,
.status-chip,
.planner-filter,
.choice-chip,
.icon-button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary-button,
.secondary-button,
.text-button {
  padding: 12px 16px;
}

.primary-button {
  background: linear-gradient(135deg, #2456ad, #173d7a);
  color: #fff;
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover,
.nav-item:hover,
.status-chip:hover,
.planner-filter:hover,
.choice-chip:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  background: var(--surface-solid);
  color: var(--text);
  border-color: var(--line);
}

.text-button {
  background: transparent;
  color: var(--primary);
}

.wide-button {
  width: 100%;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 12px;
  padding: 12px;
}

.sidebar {
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-top {
  display: grid;
  gap: 26px;
}

.sidebar-nav {
  display: grid;
  gap: 10px;
}

.nav-item {
  text-align: left;
  padding: 13px 14px;
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.nav-item.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(31, 75, 153, 0.18);
}

.sidebar-bottom {
  display: grid;
  gap: 14px;
}

.session-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content {
  border-radius: var(--radius);
  padding: 14px;
}

.topbar,
.topbar-actions,
.metric-grid,
.dashboard-grid,
.planner-header,
.task-header,
.task-meta-row,
.task-actions,
.modal-header,
.detail-header,
.timeline-header,
.comment-header {
  display: flex;
  gap: 12px;
}

.topbar,
.planner-header,
.task-header,
.modal-header,
.detail-header,
.timeline-header,
.comment-header {
  justify-content: space-between;
  align-items: center;
}

.topbar {
  margin-bottom: 18px;
}

.topbar-actions {
  flex-wrap: wrap;
}

.page-section {
  display: grid;
  gap: 18px;
  min-height: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.planner-card,
.panel-card,
.task-card,
.group-card,
.timeline-card,
.comment-card {
  border-radius: var(--radius);
}

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
}

.task-planner-layout,
.detail-columns {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
}

.planner-card,
.panel-card {
  padding: 20px;
}

.planner-filters,
.status-row,
.choice-grid,
.attachment-list,
.timeline-list,
.comment-list,
.group-list,
.task-list,
.board-task-list {
  display: grid;
  gap: 12px;
}

.planner-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.planner-filter {
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--text);
  text-align: left;
}

.planner-filter.is-active {
  border-color: rgba(31, 75, 153, 0.22);
  background: var(--primary-soft);
  color: var(--primary);
}

.planner-item,
.task-card,
.group-card {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  border-radius: var(--radius);
}

.planner-item {
  display: grid;
  gap: 6px;
}

.planner-time {
  font-weight: 700;
  color: var(--primary);
}

.task-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-planner-card {
  position: sticky;
  top: 24px;
}

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

.calendar-weekdays {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.calendar-day,
.calendar-empty {
  min-height: 58px;
  border-radius: var(--radius);
}

.calendar-day {
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--text);
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}

.calendar-day small {
  color: var(--muted);
}

.calendar-day.is-today {
  border-color: var(--primary);
}

.calendar-day.is-selected {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(31, 75, 153, 0.24);
}

.task-card {
  box-shadow: var(--shadow-md);
  padding: 14px;
  gap: 10px;
}

.task-card.has-unread-comments,
.board-task-card.has-unread-comments {
  border-color: rgba(31, 75, 153, 0.35);
  background: var(--board-unread-bg);
}

.task-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 75, 153, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.task-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.task-title {
  margin: 0;
  font-size: 18px;
}

.task-meta-row {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.status-chip {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--surface-muted);
  color: var(--text);
  border-color: var(--line);
}

.status-chip.beklemede {
  color: var(--warning);
  background: rgba(245, 158, 11, 0.12);
}

.status-chip.devam-ediyor {
  color: var(--primary);
  background: rgba(31, 75, 153, 0.12);
}

.status-chip.tamamlandi {
  color: var(--success);
  background: rgba(34, 197, 94, 0.12);
}

.status-chip.iptal-edildi {
  color: var(--danger);
  background: rgba(194, 65, 12, 0.12);
}

.task-actions {
  flex-wrap: wrap;
  align-items: end;
}

.inline-status-select {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.inline-status-select span {
  font-size: 12px;
  color: var(--muted);
}

.inline-status-select select {
  min-height: 42px;
}

.page-empty {
  padding: 28px;
  background: var(--surface-solid);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.board-shell {
  display: flex;
  gap: 18px;
  align-items: start;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 24px;
  margin-top: -24px;
  padding-bottom: 10px;
  min-height: calc(100vh - 190px);
  position: relative;
  z-index: 0;
}

.board-column {
  flex: 0 0 320px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  align-content: stretch;
  height: calc(100vh - 210px);
  max-height: calc(100vh - 210px);
  padding: 12px;
  border: 1px solid var(--board-column-line);
  border-radius: var(--radius);
  background: var(--board-column-bg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  position: relative;
  z-index: 1;
}

body:not([data-theme="dark"]) .board-column {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
  border-color: rgba(15, 23, 42, 0.08);
}

.board-column.is-dragging-column {
  opacity: 0.55;
}

.board-column.is-drop-target {
  outline: 2px dashed rgba(141, 179, 255, 0.28);
}

.board-column-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 2px 28px 8px 2px;
  border-bottom: 1px solid var(--board-soft-line);
}

.board-column-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.board-column-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.board-create-button {
  position: absolute;
  top: -22px;
  right: -13px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-solid);
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.board-create-button:hover {
  transform: translateY(-1px);
}

.board-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.board-task-list {
  min-height: 0;
  display: grid;
  align-content: start;
  padding: 0 2px 2px 0;
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
  overflow-y: auto;
  gap: 6px;
}

.board-task-list.is-drop-target {
  background: var(--board-drop-bg);
  outline: 2px dashed rgba(141, 179, 255, 0.28);
}

.board-task-card {
  display: grid;
  gap: 5px;
  padding: 8px 9px;
  border: 1px solid var(--board-card-line);
  border-radius: var(--radius);
  background: var(--board-card-bg);
  cursor: grab;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.13);
  position: relative;
}

body:not([data-theme="dark"]) .board-task-card {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.board-task-card.is-dragging {
  opacity: 0.55;
}

.board-task-card + .board-task-card {
  margin-top: 0;
}

.board-task-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 5px 0 0 5px;
  background: var(--board-soft-line);
}

.board-task-card.has-unread-comments::before {
  background: var(--primary);
}

.board-task-top,
.board-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
}

.board-task-top strong {
  display: block;
  line-height: 1.2;
  font-size: 15px;
  padding-right: 6px;
}

.board-task-subline {
  color: var(--text);
  opacity: 0.9;
  font-size: 13px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board-task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
}

.board-task-row-bottom {
  padding-top: 4px;
  border-top: 1px solid var(--board-soft-line);
}

.board-task-code {
  font-weight: 700;
  color: var(--primary);
}

.board-task-priority {
  margin-left: auto;
}

.board-task-assignees {
  font-size: 12px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.board-status-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--board-card-line);
  background: var(--surface-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.board-status-icon.beklemede {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.2);
}

.board-status-icon.devam-ediyor {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.22);
}

.board-status-icon.tamamlandi {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.2);
}

.board-status-icon.iptal-edildi {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.2);
}

.task-highlight {
  padding: 3px 6px;
  font-size: 10px;
}

.board-quick-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.board-quick-status select {
  width: auto;
  min-width: 88px;
  padding: 4px 20px 4px 8px;
  font-size: 10px;
  min-height: 28px;
  background: var(--surface-solid);
  border-color: var(--line);
}

.board-empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--board-soft-line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--board-empty-bg);
}

@media (max-width: 900px) {
  .board-shell {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
    min-height: calc(100vh - 170px);
  }

  .board-column {
    flex: initial;
    height: calc(100vh - 190px);
    max-height: calc(100vh - 190px);
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.42);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius);
}

.modal-scroll-form {
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding-right: 4px;
}

.modal-large {
  width: min(100%, 880px);
}

.modal-xlarge {
  width: min(100%, 1120px);
}

.icon-button {
  width: 38px;
  height: 38px;
  background: var(--surface-solid);
  border-color: var(--line);
  color: var(--text);
}

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

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-chip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
}

.choice-chip input {
  width: auto;
  margin-top: 2px;
}

.helper-box {
  padding: 12px 14px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.detail-panel {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  border-radius: var(--radius);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-item strong {
  display: block;
  margin-bottom: 4px;
}

.timeline-card,
.comment-card {
  padding: 14px;
}

.small-button {
  padding: 9px 12px;
}

.history-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.history-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.compact-comment-list {
  margin-top: 10px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.comment-line {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  cursor: pointer;
}

.comment-line-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.comment-line-body {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.comment-line.is-expanded .comment-line-body {
  white-space: normal;
  overflow: visible;
}

.attachment-link {
  color: var(--primary);
  text-decoration: none;
}

.attachment-link:hover {
  text-decoration: underline;
}

.comment-read-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.comment-read-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: var(--surface-solid);
  border: 1px solid var(--line);
}

.comment-read-item.is-read {
  border-color: rgba(21, 128, 61, 0.16);
}

.comment-read-item.is-pending {
  border-color: rgba(180, 83, 9, 0.16);
}

.flash {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.flash.is-error {
  border-color: rgba(194, 65, 12, 0.26);
  color: var(--danger);
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
}

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

.report-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
}

.report-table-panel {
  padding: 18px;
}

.report-filters {
  display: grid;
  grid-template-columns: 180px 180px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 14px;
}

.report-filter-wide {
  min-width: 0;
}

.report-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.report-table th,
.report-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.report-table th {
  position: sticky;
  top: 0;
  background: var(--surface-muted);
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.report-table tbody tr {
  cursor: pointer;
}

.report-table tbody tr:hover {
  background: var(--primary-soft);
}

.report-empty-cell {
  text-align: center !important;
  color: var(--muted);
}

.report-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .app-shell,
  .dashboard-grid,
  .task-planner-layout,
  .detail-columns,
  .detail-grid,
  .metric-grid,
  .task-list,
  .report-grid,
  .report-filters,
  .choice-grid,
  .planner-filters,
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
  }

  .app-shell {
    padding: 16px;
  }
}
