/* ========================================
   Habit Tracker — ダークグリーンテーマ
   iPhone最適化 / ミニマルデザイン
   ======================================== */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --bg-deep: #0a1a12;
  --bg-primary: #0f2318;
  --bg-card: #142e1f;
  --bg-card-hover: #1a3a28;
  --bg-surface: #1c4030;
  --bg-elevated: #1e4a35;

  /* Accent */
  --accent: #4ade80;
  --accent-dim: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --accent-glow-strong: rgba(74, 222, 128, 0.3);

  /* Fire / streak */
  --fire: #f97316;
  --fire-glow: rgba(249, 115, 22, 0.2);

  /* Text */
  --text-primary: #e8f5ec;
  --text-secondary: #8fbc9a;
  --text-muted: #5a8a6a;
  --text-dim: #3d6b50;

  /* Borders */
  --border: rgba(74, 222, 128, 0.08);
  --border-accent: rgba(74, 222, 128, 0.2);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Safe areas */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

/* ---- Views ---- */
.view {
  display: none;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.view.active {
  display: flex;
}

/* ---- Header ---- */
.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 16px) 20px 12px;
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header-date-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}

.header-month {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.header-day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.header-weekday {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 4px;
}

.stats-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 8px;
  background: var(--bg-surface);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.streak-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--fire-glow);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: default;
  animation: pulse-fire 2s ease-in-out infinite;
}

@keyframes pulse-fire {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }

  50% {
    box-shadow: 0 0 12px 2px rgba(249, 115, 22, 0.15);
  }
}

.streak-icon {
  font-size: 1.1rem;
}

.streak-count {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fire);
}

/* Stats nav arrows */
.stats-nav-arrows {
  display: flex;
  gap: 4px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:active {
  background: var(--bg-surface);
  transform: scale(0.92);
}

/* ---- Week Calendar ---- */
.week-calendar {
  display: flex;
  justify-content: space-around;
  padding: 12px 12px 8px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.week-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 40px;
}

.week-day:active {
  transform: scale(0.93);
}

.week-day-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.week-day-num {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: var(--transition);
}

.week-day.today .week-day-num {
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.3);
}

.week-day.selected .week-day-num {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.week-day.today.selected .week-day-num {
  border: none;
  background: var(--accent);
  color: var(--bg-deep);
}

.week-day.has-complete .week-day-label {
  color: var(--accent-dim);
}

.week-day.all-complete::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: -2px;
}

/* ---- Filter Bar ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.filter-chip:active {
  transform: scale(0.95);
}

.filter-chip.active {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  font-weight: 600;
}

/* ---- Task List ---- */
.task-list {
  flex: 1;
  padding: 4px 16px 120px;
  overflow-y: auto;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--text-muted);
  text-align: center;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state p {
  font-size: 0.95rem;
  font-weight: 500;
}

.empty-sub {
  font-size: 0.8rem !important;
  margin-top: 4px;
  color: var(--text-dim) !important;
}

/* ---- Task Item ---- */
.task-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  animation: slideIn 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.task-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.task-item:active {
  background: var(--bg-card-hover);
}

.task-item.checked {
  opacity: 0.65;
}

.task-item.checked::before {
  opacity: 1;
}

/* Timing tag */
.task-timing {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-dim);
  background: var(--accent-glow);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Center block */
.task-center {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  cursor: pointer;
}

.task-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-item.checked .task-name {
  text-decoration: line-through;
  color: var(--text-muted);
}

.task-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.task-category-tag {
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 1px 6px;
  border-radius: 4px;
}

.task-link-icon {
  font-size: 0.7rem;
  color: var(--accent-dim);
  opacity: 0.7;
}

/* Right block */
.task-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-streak-mini {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  color: var(--fire);
  font-weight: 700;
  opacity: 0.9;
}

.task-streak-mini .mini-fire {
  font-size: 0.75rem;
}

/* Checkbox */
.check-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.check-btn:active {
  transform: scale(0.85);
}

.check-btn.checked {
  background: var(--accent);
  border-color: var(--accent);
  animation: checkPop 0.3s ease-out;
}

@keyframes checkPop {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

.check-btn.checked svg {
  opacity: 1;
}

.check-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--bg-deep);
  stroke-width: 3;
  fill: none;
  opacity: 0;
  transition: var(--transition);
}

/* Edit indicator */
.task-edit-hint {
  position: absolute;
  right: 8px;
  top: 4px;
  font-size: 0.55rem;
  color: var(--text-dim);
  opacity: 0;
  transition: var(--transition);
}

.task-item:hover .task-edit-hint,
.task-item:active .task-edit-hint {
  opacity: 1;
}

/* ---- FAB ---- */
.fab {
  position: fixed;
  bottom: calc(80px + var(--safe-bottom));
  right: max(20px, calc((100vw - 430px) / 2 + 20px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--bg-deep);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.35);
  transition: var(--transition);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab:active {
  transform: scale(0.88);
  box-shadow: 0 2px 12px rgba(74, 222, 128, 0.5);
}

/* ---- Bottom Nav ---- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: space-around;
  padding: 8px 0 calc(8px + var(--safe-bottom));
  background: rgba(15, 35, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 60;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 20px;
  border: none;
  background: none;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn.active {
  color: var(--accent);
}

.nav-btn:active {
  transform: scale(0.9);
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal {
  width: 100%;
  max-width: 430px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-primary);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  padding: 24px 20px calc(24px + var(--safe-bottom));
  animation: slideUp 0.3s ease-out;
  border: 1px solid var(--border);
  border-bottom: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-card);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:active {
  background: var(--bg-surface);
  transform: scale(0.9);
}

/* ---- Form ---- */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.required {
  color: var(--fire);
}

.form-group input[type="text"],
.form-group input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.input-with-emoji {
  display: flex;
  gap: 8px;
}

.input-with-emoji input {
  flex: 1;
}

.emoji-picker-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.emoji-picker-btn:active {
  transform: scale(0.92);
  background: var(--bg-surface);
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  padding: 10px;
  margin-top: 8px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.emoji-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}

.emoji-grid span:active {
  background: var(--bg-surface);
  transform: scale(0.85);
}

.timing-options,
.frequency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.radio-chip {
  cursor: pointer;
}

.radio-chip input {
  display: none;
}

.radio-chip span {
  display: block;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.radio-chip input:checked+span {
  background: var(--accent-glow-strong);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.radio-chip:active span {
  transform: scale(0.95);
}

.freq-input {
  width: 50px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: center;
  outline: none;
}

.freq-input:focus {
  border-color: var(--accent);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:active {
  transform: scale(0.97);
  background: var(--accent-dim);
}

.form-actions-row {
  display: flex;
  gap: 10px;
}

.btn-delete {
  flex: 0 0 auto;
  padding: 14px 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete:active {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(0.97);
}

.form-actions-row .btn-submit {
  flex: 1;
}

/* ---- Stats ---- */
.stats-content {
  flex: 1;
  padding: 16px 16px 120px;
  overflow-y: auto;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.chart-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* Task stats bars */
.task-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.task-stat-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  min-width: 90px;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-stat-bar-bg {
  flex: 1;
  height: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.task-stat-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: var(--radius-full);
  transition: width 0.6s ease-out;
}

.task-stat-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 36px;
  text-align: right;
}

/* ---- No data state for stats ---- */
.stats-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: 10px;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: calc(100px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Check Particles ---- */
.check-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 300;
  animation: particleBurst 0.45s ease-out forwards;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx, 20px), var(--dy, -20px)) scale(0.3);
  }
}

/* ---- Touch Improve ---- */
.check-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.task-center {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.fab {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.task-item {
  -webkit-user-select: none;
  user-select: none;
}

/* ---- PC Responsive ---- */
@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    background: #060f0a;
  }

  #app {
    max-width: 430px;
    width: 430px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--bg-deep);
    position: relative;
    box-shadow: 0 0 60px rgba(74, 222, 128, 0.06),
      0 0 0 1px rgba(74, 222, 128, 0.08);
    border-left: 1px solid rgba(74, 222, 128, 0.05);
    border-right: 1px solid rgba(74, 222, 128, 0.05);
  }

  /* PC hover effects */
  .task-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
  }

  .task-item:hover::before {
    opacity: 0.5;
  }

  .check-btn:hover {
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 0 12px var(--accent-glow);
  }

  .task-center:hover .task-name {
    color: var(--accent);
  }

  .task-center:hover .task-link-icon {
    opacity: 1;
  }

  .fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(74, 222, 128, 0.45);
  }

  .filter-chip:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
  }

  .nav-btn:hover {
    color: var(--text-secondary);
  }

  .arrow-btn:hover {
    background: var(--bg-surface);
    border-color: var(--accent);
  }

  .week-day:hover {
    background: var(--bg-card);
  }

  .modal-close:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
  }

  .btn-submit:hover {
    background: var(--accent-dim);
    transform: scale(1.01);
  }

  .btn-delete:hover {
    background: rgba(239, 68, 68, 0.2);
  }

  .emoji-grid span:hover {
    background: var(--bg-surface);
    transform: scale(1.1);
  }

  .radio-chip:hover span {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
  }

  /* Cursor hints for PC */
  .task-center {
    cursor: pointer;
  }

  .task-item {
    cursor: default;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  #app {
    border-radius: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: calc(100vh - 40px);
    min-height: calc(100dvh - 40px);
    overflow: hidden;
  }

  .bottom-nav {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}