@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;600&display=swap");

:root {
  --bg: #fff7e6;
  --surface: #ffffff;
  --surface-light: #fff3d6;
  --surface-border: #ffe1a6;
  --primary: #ff7a59;
  --primary-strong: #ff5a2f;
  --accent: #3ec6ff;
  --accent-strong: #19b2f4;
  --text: #2a2a2a;
  --muted: #6b7280;
  --danger: #ef4444;
  --shadow: 0 14px 32px rgba(255, 122, 89, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, #ffe4b3 0%, #fff7e6 55%, #f9fbff 100%);
  color: var(--text);
  min-height: 100vh;
}

.background-blur {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(62, 198, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 5%, rgba(255, 122, 89, 0.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

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

.command-input {
  font-family: "Space Mono", "Space Grotesk", monospace;
  font-size: 1rem;
  padding: 6px 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  appearance: none;
}

.command-input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.command-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.command-shell .command-input {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

.prompt {
  font-family: "Space Mono", "Space Grotesk", monospace;
  color: var(--accent-strong);
  font-weight: 700;
}

.prompt svg {
  width: 18px;
  height: 18px;
}

.prompt-text {
  font-family: "Space Mono", "Space Grotesk", monospace;
  color: var(--accent-strong);
  font-weight: 600;
}

.command-input::placeholder {
  color: rgba(107, 114, 128, 0.7);
}

.edit-indicator {
  display: none;
  font-size: 0.8rem;
  color: var(--muted);
}

.edit-indicator.visible {
  display: block;
}

.edit-indicator .mobile-hint {
  display: none;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffdca0;
  font-size: 0.9rem;
  font-weight: 600;
}

.pill-button:hover {
  border-color: rgba(62, 198, 255, 0.6);
  color: #0e7490;
}

.pill-icon svg {
  width: 16px;
  height: 16px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel.subtle {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

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

h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
}

.grid-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-form.tight {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field-header {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: #ffffff;
  border: 1px solid #ffdca0;
  border-radius: 12px;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  box-shadow: 0 8px 18px rgba(255, 122, 89, 0.08);
}

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

input[type="color"] {
  padding: 4px;
  height: 42px;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.color-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.color-options label {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(42, 42, 42, 0.2);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-options input:checked + label {
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.35);
  transform: scale(1.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.primary-button,
.ghost-button,
.danger-button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(255, 122, 89, 0.35);
}

.ghost-button {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--surface-border);
}

.danger-button {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.primary-button:hover,
.ghost-button:hover,
.danger-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
}

.filter-bar {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.task-grid {
  display: grid;
  gap: 18px;
}

.table-panel {
  padding: 0;
}

.archived-panel {
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(148, 163, 184, 0.1);
}

.archived-panel .task-table thead th,
.archived-panel .task-table tbody td {
  color: rgba(107, 114, 128, 0.9);
}

.archived-row .badge,
.archived-row .tag {
  opacity: 0.6;
}

.table-header {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px 0;
}

.table-counts {
  font-size: 0.85rem;
  color: var(--muted);
}

.filter-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #ffdca0;
  background: rgba(255, 243, 214, 0.7);
  font-size: 0.75rem;
}

.filter-clear {
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 600;
}


.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

.task-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.task-table thead th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 14px 16px;
  background: rgba(255, 249, 235, 0.8);
  border-bottom: 1px solid #ffdca0;
}

.sort-link {
  text-decoration: none;
  color: inherit;
}

.sort-link:hover {
  color: var(--accent-strong);
}

.sort-arrows {
  font-size: 0.65rem;
  margin-left: 6px;
  color: rgba(107, 114, 128, 0.7);
}

.task-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 220, 160, 0.6);
  vertical-align: top;
}

.task-table tbody tr:hover {
  background: rgba(255, 243, 214, 0.35);
}

.task-table tbody tr:nth-child(even) {
  background: rgba(255, 243, 214, 0.15);
}

.task-table tbody tr.next-row {
  background: rgba(34, 197, 94, 0.08);
}

.task-cell .task-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.next-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
  margin-right: 8px;
}

.task-title.linkish {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(62, 198, 255, 0.5);
}

.task-cell .task-desc {
  color: var(--muted);
}

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

.inline-edit {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.details-panel {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ffdca0;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
}

.detail-row {
  display: grid;
  gap: 6px;
}

.detail-row .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.touch-log {
  display: grid;
  gap: 8px;
}

.touch-log h5 {
  margin: 0;
  font-size: 0.9rem;
}

.touch-log ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-form {
  display: grid;
  gap: 10px;
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(640px, 92vw);
}

.modal::backdrop {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
}

.modal-card {
  background: #ffffff;
  border: 1px solid #ffdca0;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

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


.touch-notes.inline {
  margin-top: 8px;
  padding: 8px;
}

.task-card {
  background: var(--surface);
  border: 1px solid #ffe1a6;
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.task-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.status-indicator {
  display: flex;
  align-items: center;
}

.state-toggle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #ffe1a6;
  background: rgba(255, 122, 89, 0.06);
  display: grid;
  place-items: center;
}

.state-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.state-open {
  border: 2px solid var(--muted);
  background: transparent;
}

.state-dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(62, 198, 255, 0.5);
}

.state-closed {
  background: var(--primary);
  position: relative;
}

.state-closed::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.state-next {
  background: #f97316;
  position: relative;
}

.state-next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ffffff;
  transform: translate(-35%, -50%);
}

.task-heading h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.task-heading p {
  margin: 0;
  color: var(--muted);
}

.task-color {
  width: 18px;
  height: 60px;
  border-radius: 10px;
  opacity: 0.9;
}

.task-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ffe1a6;
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(255, 220, 160, 0.3);
}

.pill-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.pill-link:hover {
  border-color: rgba(62, 198, 255, 0.6);
}

.status-badge {
  border-color: rgba(62, 198, 255, 0.45);
  color: #0e7490;
  background: rgba(62, 198, 255, 0.15);
}

.priority-badge {
  border-color: rgba(249, 115, 22, 0.4);
  color: #c2410c;
  background: rgba(251, 191, 36, 0.2);
}

.project-badge {
  background: rgba(62, 198, 255, 0.15);
}

.due-badge {
  border-color: rgba(245, 158, 11, 0.45);
  color: #b45309;
}

.tags .tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(62, 198, 255, 0.2);
  color: #075985;
  font-size: 0.75rem;
}

.tag-link {
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.7);
  text-underline-offset: 3px;
}

.tags .tag.muted {
  background: rgba(148, 163, 184, 0.12);
  color: var(--muted);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.dot-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(62, 198, 255, 0.5);
}

.dot:hover {
  box-shadow: 0 0 10px rgba(62, 198, 255, 0.8);
}

.dot-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.progress-count {
  font-size: 0.85rem;
  color: var(--muted);
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.inline-form input,
.inline-form select {
  min-width: 180px;
}

.project-form {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ffdca0;
}

.inline-details summary {
  list-style: none;
  cursor: pointer;
}

.inline-details summary::-webkit-details-marker {
  display: none;
}

.help-panel {
  margin-top: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 243, 214, 0.7);
  border: 1px solid #ffdca0;
  color: var(--text);
}

.help-panel p {
  margin: 6px 0;
  font-size: 0.9rem;
}

.help-panel code {
  background: rgba(62, 198, 255, 0.15);
  padding: 2px 6px;
  border-radius: 8px;
}

.help-inline {
  margin-top: -12px;
}

.help-text {
  line-height: 1.6;
  color: var(--muted);
  font-size: 0.85rem;
}

.help-inline-panel {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed #ffdca0;
  background: rgba(255, 255, 255, 0.7);
}

.page-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(62, 198, 255, 0.5);
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #0e7490;
}


.edit-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 243, 214, 0.75);
  border: 1px solid #ffdca0;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  border: 1px dashed #ffdca0;
  background: rgba(255, 255, 255, 0.8);
}

.form-errors {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.form-errors ul {
  margin: 6px 0 0;
  padding-left: 20px;
}

.create-card {
  display: grid;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  border: 1px solid #ffdca0;
}

.create-panel {
  padding: 18px 20px;
  border: 1px solid rgba(255, 122, 89, 0.2);
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.14), rgba(62, 198, 255, 0.14));
}

.login-panel {
  max-width: 520px;
  margin: 0 auto;
}

.login-card {
  display: grid;
  gap: 12px;
}

.login-card.spaced {
  gap: 18px;
}

.login-hero {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.login-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 2vw + 1.6rem, 2.8rem);
  font-weight: 700;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 8px;
  background: rgba(62, 198, 255, 0.28);
  border-radius: 999px;
  z-index: -1;
}

.login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.login-hero-copy p {
  max-width: 440px;
}

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

.login-microcard {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 220, 160, 0.9);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.login-microcard .micro-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.login-microcard .micro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(62, 198, 255, 0.45);
}

.login-microcard code {
  background: rgba(62, 198, 255, 0.18);
  padding: 4px 8px;
  border-radius: 10px;
  display: inline-flex;
  width: fit-content;
}

.login-hero-card {
  display: flex;
  align-items: center;
}

.login-hero-card .login-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 220, 160, 0.9);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.settings-form {
  display: grid;
  gap: 16px;
}

.divider {
  height: 1px;
  background: rgba(255, 220, 160, 0.8);
  border: none;
}

.settings-form + .settings-form {
  margin-top: 16px;
}

.settings-form button {
  margin-top: 4px;
}

.settings-form .field {
  gap: 10px;
}

.settings-form input {
  width: 100%;
}

.login-bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.login-bullets code {
  background: rgba(62, 198, 255, 0.15);
  padding: 2px 6px;
  border-radius: 8px;
}

.mobile-meta {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
  font-size: 0.8rem;
}

@media (max-width: 720px) {
  .login-hero {
    grid-template-columns: 1fr;
  }

  .login-hero-card {
    align-items: stretch;
  }
}

.create-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1fr;
}

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

.touch-notes {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #ffdca0;
  background: rgba(255, 243, 214, 0.65);
}

.touch-notes h4 {
  margin: 0;
  font-size: 0.9rem;
}

.touch-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.touch-note strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .col-priority,
  .col-tags {
    display: none;
  }

  .col-project,
  .col-due,
  .col-status {
    display: none;
  }

  .app-shell {
    gap: 20px;
    padding: 18px 14px 60px;
  }

  .panel {
    padding: 16px;
  }

  .create-panel {
    padding: 14px 16px;
  }

  .create-card {
    padding: 12px 14px;
    gap: 14px;
  }

  .command-shell {
    gap: 8px;
  }

  .prompt svg {
    width: 16px;
    height: 16px;
  }

  .prompt-text {
    font-size: 0.9rem;
  }

  .command-input {
    font-size: 0.95rem;
  }

  .table-header {
    padding: 12px 14px 0;
  }

  .table-counts {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .filter-pill {
    margin-left: 6px;
    margin-top: 6px;
  }

  .task-table thead {
    display: none;
  }

  .task-table,
  .task-table tbody {
    display: block;
    width: 100%;
  }

  .task-table tbody tr {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 6px 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 220, 160, 0.6);
  }

  .task-table tbody td {
    padding: 0;
    border: none;
  }

  .task-table tbody tr:nth-child(even),
  .task-table tbody tr:hover {
    background: transparent;
  }

  .task-table tbody tr.next-row {
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid rgba(34, 197, 94, 0.35);
  }

  .task-table tbody td:first-child {
    grid-row: 1 / span 4;
  }

  .task-cell {
    grid-column: 2;
  }

  .task-title.linkish {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .task-title.linkish.expanded {
    -webkit-line-clamp: initial;
    display: block;
  }

  .dot-row {
    margin-top: 4px;
  }

  .state-toggle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .next-chip {
    margin-bottom: 4px;
  }

  .mobile-meta {
    display: flex;
  }

  .edit-indicator .desktop-hint {
    display: none;
  }

  .edit-indicator .mobile-hint {
    display: inline;
  }

  .task-meta {
    grid-template-columns: auto 1fr;
  }

  .task-color {
    display: none;
  }

  .inline-form input,
  .inline-form select {
    min-width: 140px;
  }

  .create-row {
    grid-template-columns: 1fr;
  }
}
