:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --text: #111317;
  --muted: #5b6370;
  --line: #123A5A;
  --line-soft: #d1daea;
  --blue-fill: #123A5A;
  --red: #e25151;
  --orange: #e3a531;
  --green: #5f9b73;
  --radius: 22px;
  --shell-max: 460px;
  --shell-pad-x: 14px;
  --font-main: "Aptos", "Oracle Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 0% 0%, #f3f5f9 0%, transparent 34%),
    radial-gradient(circle at 100% 0%, #eef1f6 0%, transparent 40%),
    var(--bg);
  color: var(--text);
  height: 100dvh;
  overflow: hidden;
}

input,
button,
select,
textarea,
option {
  font-family: inherit;
}

code,
kbd,
pre,
samp {
  font-family: inherit;
}

.app-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  height: 100dvh;
  padding: 14px var(--shell-pad-x) 84px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px 4px;
  height: 40px;
  min-height: 40px;
}

.topbar-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 10px;
}

.eyebrow {
  margin: 0;
  color: var(--line);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
}

h1 {
  font-size: 1.24rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-size: 1.13rem;
}

.muted {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.center {
  text-align: center;
}

.app-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid #e5ebf3;
  border-radius: 14px;
  padding: 0;
  width: min(calc(var(--shell-max) - (var(--shell-pad-x) * 2)), calc(100vw - (var(--shell-pad-x) * 2)));
  box-shadow: 0 10px 28px rgba(18, 58, 90, 0.11);
  overflow: visible;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: #8a97ab;
  border-radius: 0;
  padding: 6px 8px;
  min-height: 54px;
  font-weight: 600;
  border: 0;
  background: transparent;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    opacity 240ms ease;
}

.nav-item.active {
  background: transparent;
  color: var(--line);
  opacity: 1;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  height: 3px;
  border-radius: 0;
  background: var(--line);
}

.nav-item .icon-svg {
  transition:
    opacity 240ms ease,
    stroke-width 240ms ease;
  opacity: 0.78;
  transform: none;
  width: 23px;
  height: 23px;
  stroke-width: 2.05;
}

.nav-item.active .icon-svg {
  opacity: 1;
  stroke-width: 2.25;
}

.surface {
  background: var(--surface);
  border: 1px solid #f0f1f3;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(17, 19, 23, 0.06);
  padding: 12px;
  min-height: 0;
  overflow: hidden;
}

.surface {
  display: grid;
  gap: 16px;
}

.surface-main {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
  align-content: start;
  grid-auto-rows: min-content;
}

.todo-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
}

.todo-title {
  font-size: 2rem;
  line-height: 1.05;
  margin-top: 6px;
}

.donut-panel {
  width: 180px;
  flex: 0 0 180px;
}

.banner {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #e8edf6;
  color: var(--text);
}

.hidden {
  display: none !important;
}

.day-strip-wrap {
  display: grid;
  gap: 0;
}

.day-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
}

.day-pill {
  border: 1px solid #dde5f2;
  background: #f4f7fc;
  color: #41506a;
  border-radius: 16px;
  width: 70px;
  min-width: 70px;
  padding: 8px 6px;
  display: grid;
  gap: 2px;
  justify-items: center;
  cursor: pointer;
}

.day-pill.today {
  border-color: #cfd8ea;
}

.day-pill.active {
  background: var(--blue-fill);
  border-color: var(--blue-fill);
  color: #fff;
}

.day-pill-week {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.92;
}

.day-pill-num {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

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

input[type="text"],
input[type="time"],
select,
textarea {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  background: #fff;
}

input[type="text"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(18, 58, 90, 0.2);
}

.btn-outline,
.btn-solid {
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid var(--line);
  background: #fff;
  color: var(--line);
}

.btn-solid {
  border: 2px solid var(--line);
  background: var(--blue-fill);
  color: #fff;
}

.btn-outline.danger {
  border-color: var(--line);
  color: var(--line);
  justify-self: start;
  align-self: start;
}

.task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  overflow: auto;
}

.task-item {
  border-bottom: 1px solid #e8eef8;
  padding: 11px 4px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: transparent;
}

.task-item input[type="checkbox"] {
  accent-color: var(--line);
}

.task-main {
  flex: 1;
  min-width: 0;
}

.task-title {
  font-size: 1.02rem;
  color: var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-category {
  margin-top: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #7a8eac;
}

.task-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d9e3f3;
  background: #f0f4fb;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
}

.task-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #34455f;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.task-icon {
  font-size: 1rem;
  line-height: 1;
}

.task-item.done .task-title {
  text-decoration: line-through;
  color: #6d84a6;
}

.task-item.done .task-category {
  color: #9aabc2;
}

.task-action {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #d9e3f3;
  background: #f8fbff;
  color: #4b607f;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.task-action svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.task-action:disabled {
  opacity: 0.45;
  cursor: default;
}

.donut-wrap {
  position: relative;
  width: 160px;
  margin: 2px auto;
}

.donut {
  width: 100%;
  transform: rotate(-90deg);
}

.donut-track {
  fill: none;
  stroke: #e7eefb;
  stroke-width: 8;
}

.donut-progress {
  fill: none;
  stroke-width: 8;
  stroke-linecap: butt;
  transition: stroke-dashoffset 0.35s ease, stroke 0.35s ease;
}

.donut-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.05rem;
  font-weight: 700;
}

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

.month-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.month-label {
  min-width: 160px;
  text-align: center;
  font-weight: 700;
  margin: 0;
}

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

.weekday {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.day-cell {
  min-height: 0;
  height: clamp(40px, 6.4dvh, 70px);
  border: 2px solid #d9e7ff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4dvh, 2rem);
  background: #fff;
  color: #2a4670;
}

.day-cell.empty {
  border-style: dashed;
  opacity: 0.32;
}

.day-cell.future,
.day-cell.pre-start {
  background: #ffffff;
  color: #abc0dd;
  border-color: #e2ecfb;
}

.day-cell.today {
  box-shadow: none;
}

.day-cell.level-red {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.day-cell.level-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.day-cell.level-green {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

.legend {
  margin-top: 4px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.red {
  background: var(--red);
}

.orange {
  background: var(--orange);
}

.green {
  background: var(--green);
}

.settings-stack {
  gap: 18px;
}

.rule-inline {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.icon-palette {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 120px;
  overflow: auto;
  padding: 2px;
}

.icon-pick {
  width: 36px;
  height: 36px;
  border: 2px solid var(--line-soft);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.icon-pick svg {
  width: 18px;
  height: 18px;
  stroke: #384d6b;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-pick.active {
  border-color: var(--line);
  background: #e8edf6;
}

.rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--line-soft);
  border-radius: 12px;
  padding: 8px 10px;
}

.rule-item .task-icon-box {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.rule-keyword {
  flex: 1;
  text-transform: lowercase;
}

.setting-row-stack {
  align-items: stretch;
  flex-direction: column;
}

.firebase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.firebase-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.firebase-actions > * {
  flex: 1;
}

.surface-side {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
}

.page-logo {
  width: 72px;
  height: 72px;
  border: 2px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--line);
  font-size: 2rem;
  font-weight: 700;
  background: #fff;
}

.icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-logo .icon-svg {
  width: 38px;
  height: 38px;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line-soft);
}

.setting-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 820px) {
  body[data-page="calendar"] .surface,
  body[data-page="settings"] .surface {
    grid-template-columns: 1fr;
  }
}

body[data-page="today"] .todo-surface {
  grid-template-columns: 1fr;
}

body[data-page="daily5"] .daily5-surface {
  grid-template-columns: 1fr;
  align-content: start;
  overflow: auto;
}

body[data-page="daily5-settings"] .daily5-surface {
  grid-template-columns: 1fr;
  align-content: start;
  overflow: auto;
}

.daily5-settings-link {
  white-space: nowrap;
  text-decoration: none;
}

.topbar .btn-outline,
.topbar .btn-solid,
.topbar .daily5-settings-link {
  min-height: 32px;
  padding: 7px 11px;
  font-size: 0.86rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.daily5-feed-surface {
  overflow: auto;
}

.daily5-controls {
  display: grid;
  gap: 10px;
}

.daily5-row {
  align-items: start;
}

.topic-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  max-width: 100%;
}

.daily5-topic-stack {
  display: grid;
  gap: 8px;
  width: min(640px, 100%);
}

.daily5-prompt-stack {
  display: grid;
  gap: 8px;
  width: min(640px, 100%);
}

.daily5-custom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.selected-topic-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selected-topic {
  border: 1px solid #cfdcf3;
  background: #f4f8ff;
  color: #2f4468;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.86rem;
  cursor: pointer;
}

.topic-chip {
  border: 2px solid var(--line-soft);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.9rem;
  cursor: pointer;
}

.topic-chip.active {
  border-color: var(--line);
  background: #e8edf6;
}

.daily5-actions {
  display: flex;
  justify-content: flex-end;
}

.daily5-feed {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.daily5-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f7faff;
  padding-bottom: 4px;
}

.daily5-counter {
  display: inline-block;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #2e476e;
  background: #f5f9ff;
}

.daily5-card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  border-left: 4px solid #bcd2f8;
}

.daily5-card.done {
  border-left-color: #84b79c;
  background: #fbfefc;
}

.daily5-visual {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.daily5-visual-pill {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #d8e4f8;
  background: #f3f7ff;
  color: #365279;
}

.daily5-refs {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.daily5-ref-link {
  display: inline-block;
  border: 1px solid #d8e4f8;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.78rem;
  color: #2f4468;
  background: #f7fbff;
  text-decoration: none;
}

.daily5-type {
  color: var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.daily5-card h3 {
  margin: 4px 0 6px;
  font-size: 1rem;
}

.daily5-card p {
  margin: 0;
}

.daily5-options {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.daily5-fill {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.daily5-option {
  border: 1px solid var(--line-soft);
  background: #fff;
  border-radius: 12px;
  padding: 9px 10px;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  font-size: 0.92rem;
}

.daily5-option.correct {
  border-color: #5f9b73;
  background: #eef7f1;
  color: #2f6246;
}

.daily5-option.wrong {
  border-color: #d96b6b;
  background: #fdf1f1;
  color: #8d3a3a;
}

.daily5-option:disabled {
  cursor: default;
}

.daily5-feedback {
  margin-top: 10px !important;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.daily5-feedback.good {
  background: #eef7f1;
  color: #2f6246;
}

.daily5-feedback.bad {
  background: #fdf1f1;
  color: #8d3a3a;
}

.daily5-mcq {
  margin-top: 7px;
  display: grid;
  gap: 5px;
}

.daily5-mcq li {
  margin-left: 18px;
}

body[data-page="calendar"] .surface {
  grid-template-rows: auto auto 1fr auto;
}

body[data-page="calendar"] .calendar-grid {
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 780px) {
  :root {
    --shell-pad-x: 10px;
  }

  .app-shell {
    padding: 14px var(--shell-pad-x) 82px;
  }

  .home-shell {
    padding: 14px var(--shell-pad-x) calc(80px + env(safe-area-inset-bottom));
  }

  .calendar-header {
    flex-direction: column;
    align-items: stretch;
  }

  .month-controls {
    justify-content: space-between;
  }

  body[data-page="today"] .surface {
    grid-template-columns: 1fr;
  }

  .todo-top {
    align-items: center;
  }

  .todo-title {
    font-size: 1.6rem;
  }

  .donut-panel {
    width: 148px;
    flex-basis: 148px;
  }

  .setting-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rule-inline {
    grid-template-columns: 1fr;
  }

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

  .daily5-fill {
    grid-template-columns: 1fr;
  }

  .firebase-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 0% 0%, #f3f5f9 0%, transparent 34%),
    radial-gradient(circle at 100% 0%, #eef1f6 0%, transparent 40%),
    #f4f5f7;
  color: var(--text);
  overflow: auto;
}

.home-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  height: 100dvh;
  padding: 14px var(--shell-pad-x) calc(80px + env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: hidden;
}

.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 4px;
  height: 40px;
  min-height: 40px;
}

.home-title {
  margin: 0;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.home-settings-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6e8ec;
  color: #2a3240;
  box-shadow: 0 6px 18px rgba(17, 19, 23, 0.06);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.home-settings-btn .icon-svg {
  width: 17px;
  height: 17px;
}

.home-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(17, 19, 23, 0.06);
  border: 1px solid #f0f1f3;
}

.home-credits-card {
  padding: 18px 16px;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.home-label {
  margin: 0;
  color: #6b7280;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
}

.home-credits-value {
  margin: 6px 0 0;
  font-size: clamp(2.5rem, 11vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--line);
}

.home-credits-value.is-zero {
  color: var(--red);
}

.home-credits-meta {
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 0.84rem;
}

.home-section-card {
  padding: 10px 10px 10px;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 8px;
  gap: 10px;
}

.home-section-head h2 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: #1f2937;
}

.home-section-total {
  min-width: 58px;
  text-align: right;
  font-size: 0.82rem;
  color: #4b5563;
  white-space: nowrap;
}

.home-list {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.home-app-row {
  border: 1px solid #eceef2;
  border-radius: 12px;
  padding: 8px;
  background: #fcfcfd;
}

.home-section-card.disabled {
  opacity: 0.44;
}

.home-app-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-app-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-app-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  overflow: hidden;
}

.home-app-icon.warn {
  color: #a85858;
  background: #f5ebeb;
  border-color: #ecdcdc;
}

.home-app-icon.good {
  color: #4f7f67;
  background: #edf4f0;
  border-color: #dbe9e0;
}

.home-app-icon.app-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  border-color: rgba(0, 0, 0, 0.05);
}

.home-app-icon.app-tiktok {
  color: #fff;
  background: #101217;
  border-color: #101217;
}

.home-app-icon.app-youtube {
  color: #fff;
  background: #e24f4f;
  border-color: #de5757;
}

.home-app-icon.app-samsung-health {
  color: #fff;
  background: #5c8fd8;
  border-color: #5b8bd2;
}

.home-app-icon.app-blinkist {
  color: #fff;
  background: #f0b84b;
  border-color: #e7b14c;
}

.home-app-icon.app-chatgpt {
  color: #fff;
  background: #4d8f75;
  border-color: #4a896f;
}

.home-app-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-app-icon.app-tiktok svg,
.home-app-icon.app-youtube svg,
.home-app-icon.app-instagram svg,
.home-app-icon.app-samsung-health svg,
.home-app-icon.app-blinkist svg,
.home-app-icon.app-chatgpt svg {
  color: #fff;
}

.home-app-name {
  font-size: 0.9rem;
  font-weight: 560;
  color: #182230;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-app-minutes {
  min-width: 58px;
  font-size: 0.82rem;
  color: #4b5563;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.home-lock {
  font-size: 0.78rem;
  color: #7a808a;
}

.home-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #edf0f4;
  overflow: hidden;
}

.home-progress-fill {
  height: 100%;
  border-radius: inherit;
  width: 0;
}

.home-progress-fill.warn {
  background: #be7c7c;
}

.home-progress-fill.good {
  background: #6f9f86;
}

.home-empty {
  margin: 2px 3px 5px;
  color: #667085;
  font-size: 0.9rem;
}
