:root {
  color-scheme: light;
  --ink: #17202c;
  --muted: #5b6675;
  --paper: #f8f8f4;
  --line: #d8dee7;
  --panel: #ffffff;
  --sidebar: #1f2731;
  --sidebar-soft: #313c48;
  --teal: #147c77;
  --teal-dark: #0f6864;
  --blue: #315f9d;
  --green: #2d8b57;
  --gold: #b77216;
  --red: #b44842;
  --shadow: 0 18px 60px rgba(23, 32, 44, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    linear-gradient(135deg, rgba(20, 124, 119, 0.08), transparent 36%),
    linear-gradient(225deg, rgba(183, 114, 22, 0.07), transparent 30%),
    var(--paper);
  color: var(--ink);
  margin: 0;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

[hidden] {
  display: none !important;
}

.auth-screen {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(20, 124, 119, 0.1), transparent 38%),
    linear-gradient(225deg, rgba(183, 114, 22, 0.08), transparent 32%),
    var(--paper);
  display: grid;
  min-height: 100vh;
  padding: 24px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 222, 231, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  justify-self: center;
  max-width: 430px;
  padding: 28px;
  width: 100%;
}

.auth-card .brand-mark {
  margin-bottom: 18px;
}

.auth-card h1 {
  font-size: 2.2rem;
}

.auth-message {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  min-height: 1.4em;
}

.auth-message.is-error {
  color: var(--red);
}

.app-shell {
  display: grid;
  grid-template-columns: clamp(212px, 20vw, 292px) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: var(--sidebar);
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px;
}

.brand,
.nav-button,
.topbar,
.top-actions,
.panel-head,
.lead-card,
.action-row,
.modal-head,
.modal-actions {
  align-items: center;
  display: flex;
}

.brand {
  gap: 14px;
}

.brand strong,
.brand span {
  display: block;
}

.brand span {
  color: #b9c4d0;
  font-size: 0.88rem;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #f1ead9, #8ed2c8);
  border-radius: 8px;
  color: #15212c;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

.nav-button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  text-align: left;
}

.nav-button:hover,
.nav-button.is-active {
  background: var(--sidebar-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.badge {
  align-items: center;
  background: #f1ead9;
  border-radius: 999px;
  color: #24303b;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  min-width: 25px;
  padding: 2px 7px;
}

.sidebar-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  margin-top: auto;
  padding: 18px;
}

.sidebar-panel h2 {
  font-size: 1.08rem;
  margin: 8px 0;
}

.sidebar-panel p:last-child {
  color: #c8d0d8;
  line-height: 1.5;
  margin-bottom: 0;
}

.workspace {
  min-width: 0;
  padding: clamp(22px, 4vw, 48px);
}

.topbar {
  justify-content: space-between;
  margin-bottom: 26px;
}

.top-actions {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.user-switcher {
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  gap: 4px;
  min-width: 190px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 1.28rem;
  letter-spacing: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.ghost-button,
.danger-button,
.task button {
  border-radius: 8px;
  min-height: 42px;
  padding: 0 15px;
}

.primary-button {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: white;
}

.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button,
.ghost-button,
.task button {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.file-button {
  align-items: center;
  display: inline-flex;
}

.file-button input {
  height: 1px;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.danger-button {
  background: #fff6f4;
  border: 1px solid #e6b9b2;
  color: #8d332d;
}

.secondary-button:hover,
.ghost-button:hover,
.task button:hover {
  border-color: #aeb8c4;
}

.route {
  display: none;
}

.route.is-active {
  display: block;
}

.metric-grid,
.content-grid,
.dashboard-shell,
.dashboard-columns,
.overview-strip,
.lead-layout,
.settings-grid,
.case-layout,
.time-layout,
.admin-grid,
.summary-grid {
  display: grid;
  gap: 18px;
}

.dashboard-shell {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
}

.dashboard-main,
.goal-panel {
  min-height: 0;
}

.goal-panel {
  position: sticky;
  top: 24px;
}

.dashboard-columns {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  margin-top: 18px;
}

.overview-strip {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.small-stat {
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 96px;
  padding: 16px;
}

.small-stat span,
.small-stat p {
  color: var(--muted);
}

.small-stat span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.small-stat strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.small-stat p {
  margin-bottom: 0;
}

.section-title {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.small-button {
  min-height: 34px;
  padding: 0 11px;
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-row {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  padding: 15px;
  text-align: left;
  width: 100%;
}

.dashboard-row:hover {
  background: #f1f7f6;
  border-color: rgba(20, 124, 119, 0.38);
}

.dashboard-row.row-critical {
  background: #fff6f2;
  border-color: #e9c4bb;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 18px;
}

.content-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
}

.lead-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
}

.case-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
}

.time-layout,
.admin-grid {
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
}

.settings-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
}

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

.metric-card,
.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 222, 231, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 150px;
  padding: 24px;
  min-width: 0;
}

.metric-card p,
.metric-card span,
.muted,
.task p,
.lead-card p,
.lead-card-side span,
.case-row p,
.integration-row p,
.timeline span,
.timeline p,
.progress-line span {
  color: var(--muted);
}

.metric-card p {
  margin-bottom: 18px;
}

.metric-card strong {
  display: block;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.panel {
  min-width: 0;
  padding: 24px;
}

.panel-head {
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.task-list,
.lead-list,
.case-list,
.integration-list,
.timeline,
.table-list,
.user-list {
  display: grid;
  gap: 10px;
}

.toolbar {
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.24fr) minmax(170px, 0.24fr);
  margin-bottom: 14px;
  padding: 14px;
}

.toolbar.one-column {
  grid-template-columns: 1fr;
}

.toolbar label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  gap: 6px;
}

.task {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  padding: 15px;
}

.task p,
.lead-card p,
.case-row p,
.integration-row p,
.timeline p {
  line-height: 1.45;
  margin-bottom: 0;
}

.task-dot {
  background: var(--blue);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.task-critical {
  background: #fff6f2;
  border-color: #e9c4bb;
}

.task-critical .task-dot {
  background: var(--red);
}

.goal {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
}

.goal-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, white 58%, transparent 59%),
    conic-gradient(var(--green) 0 var(--progress), #e7ebef var(--progress) 100%);
  border-radius: 50%;
  display: grid;
  justify-items: center;
  place-items: center;
}

.goal-ring strong {
  font-size: 2rem;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-bottom: 10px;
}

dt {
  color: var(--muted);
}

dd {
  font-weight: 800;
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.lead-head {
  align-items: end;
}

.filter {
  color: var(--muted);
  display: grid;
  font-size: 0.85rem;
  gap: 6px;
}

select,
input,
textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.lead-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 14px;
  justify-content: space-between;
  padding: 16px;
  text-align: left;
  width: 100%;
}

.lead-card:hover,
.lead-card.is-selected {
  background: #f1f7f6;
  border-color: rgba(20, 124, 119, 0.38);
}

.lead-card-side {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 92px;
}

.pill-row,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: #eef2f4;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 9px;
}

.pill.facebook {
  background: #e8efff;
  color: #274f92;
}

.pill.google {
  background: #fff1d7;
  color: #87540f;
}

.pill.manual,
.pill.converted {
  background: #e7f4eb;
  color: #276b45;
}

.pill.approved {
  background: #e3edf8;
  color: #285b86;
}

.pill.draft {
  background: #fff1cc;
  color: #7a5a10;
}

.pill.invoiced {
  background: #e6e0f4;
  color: #4a3c7a;
}

.pill.sent {
  background: #e9f0ee;
  color: #3f6258;
}

.pill.high,
.pill.rejected {
  background: #fbe3df;
  color: #923f38;
}

.pill.billable {
  background: #e7f4eb;
  color: #1d6640;
}

.pill.non-billable {
  background: #f0f2f4;
  color: #5a6472;
}

/* Time entry form */
.time-entry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.time-entry-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.time-entry-row label {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  gap: 4px;
}

.time-entry-row input,
.time-entry-row select {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 7px 10px;
}

.time-entry-row input:focus,
.time-entry-row select:focus {
  border-color: var(--teal);
  outline: none;
}

.time-entry-sak { flex: 2; min-width: 180px; }
.time-entry-user { flex: 1; min-width: 130px; }
.time-entry-when { align-items: flex-end; }
.time-entry-when label { flex: 0 0 auto; }
.time-entry-when input[type="date"] { width: 130px; }
.time-entry-when input[type="time"] { width: 90px; }
.time-entry-calc {
  align-self: flex-end;
  font-size: 0.9rem;
  font-weight: 700;
  padding-bottom: 9px;
  white-space: nowrap;
  color: var(--muted);
  min-width: 48px;
}
.time-entry-category { flex: 1; min-width: 160px; }
.time-entry-desc { flex: 2; min-width: 200px; }

/* Time row */
.time-row {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 14px 16px;
}

.time-row-top {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.time-row-case {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal, #147c77);
}

.time-row-desc {
  font-size: 0.92rem;
  margin: 2px 0 4px;
}

.time-row-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.time-row-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.time-row-hours {
  font-size: 1.1rem;
  white-space: nowrap;
}

.small-button {
  font-size: 0.78rem;
  padding: 5px 10px;
}

.detail {
  min-height: 480px;
}

.detail h2 {
  margin-bottom: 8px;
}

.detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 20px 0;
}

.case-overview,
.mini-bars,
.work-summary {
  display: grid;
  gap: 10px;
}

.case-overview {
  margin: 18px 0;
}

.work-summary {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 14px 0;
}

.case-tool-card {
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
}

.case-control-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  margin: 16px 0;
  padding: 16px;
}

.control-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.case-tool-card h3 {
  margin: 0 0 6px;
}

.case-tool-card p {
  margin: 0;
}

.ai-tool-card label:not(.checkbox-row) {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  gap: 6px;
}

.ai-actions {
  align-items: stretch;
}

.ai-result {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.ai-result-head {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.ai-result pre {
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
  margin: 0;
  max-height: 420px;
  overflow: auto;
  padding: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

.mini-bars {
  margin: 12px 0 8px;
}

.progress-line {
  display: grid;
  gap: 7px;
}

.progress-line div:first-child {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.progress-line strong {
  font-size: 0.86rem;
  white-space: nowrap;
}

.progress-track {
  background: #e7ebef;
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.progress-track span {
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.detail-grid div {
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.detail-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.timeline {
  margin-top: 22px;
}

.access-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 12px;
}

.access-list h3 {
  flex-basis: 100%;
}

.timeline article {
  border-left: 3px solid var(--line);
  padding-left: 12px;
}

.case-row,
.integration-row,
.table-row,
.user-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 17px;
  min-width: 0;
}

.case-row > *,
.integration-row > *,
.table-row > *,
.user-row > *,
.lead-card > * {
  min-width: 0;
}

.case-row {
  background: white;
  color: inherit;
  text-align: left;
  width: 100%;
}

.case-row:hover,
.case-row.is-selected {
  background: #f1f7f6;
  border-color: rgba(20, 124, 119, 0.38);
}

.table-row.row-critical {
  background: #fff6f2;
  border-color: #e9c4bb;
}

.table-row {
  align-items: start;
  grid-template-columns: 1fr;
}

.row-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.user-row {
  align-items: end;
  grid-template-columns: minmax(220px, 1.1fr) minmax(145px, 0.45fr) minmax(120px, 0.28fr) minmax(150px, 0.35fr) minmax(120px, 0.25fr) minmax(72px, auto);
}

.user-row label,
.inline-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  gap: 6px;
}

.inline-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.compact-form {
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 14px 0;
  padding: 14px;
}

.note-edit-form {
  background: transparent;
  border: 0;
  display: grid;
  gap: 10px;
  padding: 0 0 0 12px;
}

.note-edit-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  gap: 6px;
}

.note-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 10px;
}

.inline-form label:nth-child(3),
.inline-form label:nth-child(4) {
  grid-column: auto;
}

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

.checkbox-row input {
  min-height: auto;
  width: auto;
}

.case-status,
.integration-row span {
  border-radius: 999px;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 11px;
}

.case-status.active {
  background: var(--blue);
}

.case-status.inquiry,
.integration-row span {
  background: var(--gold);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 24px;
}

.modal {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 100px rgba(23, 32, 44, 0.24);
  max-width: 500px;
  padding: 0;
  width: calc(100% - 32px);
}

.modal::backdrop {
  background: rgba(23, 32, 44, 0.36);
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

form.no-pad {
  padding: 0;
}

form label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  gap: 6px;
}

.modal-head,
.modal-actions {
  justify-content: space-between;
}

.icon-button {
  background: #f2f4f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 36px;
  width: 36px;
}

@media (max-width: 1280px) {
  .workspace {
    padding: 28px;
  }

  .dashboard-shell,
  .case-layout {
    grid-template-columns: 1fr;
  }

  .goal-panel {
    position: static;
  }
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    gap: 18px;
    padding: 18px 24px;
  }

  .sidebar-panel {
    margin-top: 0;
  }

  .nav {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 1040px) {
  .content-grid,
  .dashboard-columns,
  .lead-layout,
  .settings-grid,
  .time-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .metric-grid,
  .overview-strip,
  .work-summary {
    grid-template-columns: 1fr;
  }

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

  .topbar,
  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions {
    justify-content: stretch;
  }

  .user-switcher {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .workspace {
    padding: 18px;
  }

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

  .top-actions,
  .goal {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .task,
  .lead-card,
  .case-row,
  .integration-row,
  .table-row,
  .user-row,
  .inline-form,
  .toolbar,
  .work-summary,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .inline-form label:nth-child(3),
  .inline-form label:nth-child(4) {
    grid-column: auto;
  }

  .row-actions {
    justify-content: flex-start;
  }

  .task-dot {
    display: none;
  }

  .lead-card-side {
    justify-items: start;
  }

  .goal-ring {
    justify-self: start;
    width: 150px;
  }
}
