/* ── Mochi Reminders - Kawaii Pastel Theme ── */

:root {
  --pink: #FF91A4;
  --pink-light: #FFB6C1;
  --pink-pale: #FFF0F5;
  --peach: #FFDAB9;
  --lavender: #E6E6FA;
  --mint: #B5EAD7;
  --butter: #FFEAA7;
  --sky: #B8D4E3;
  --coral: #F8A5A5;
  --bg: #FFF5F7;
  --card: #FFFFFF;
  --text: #5C4033;
  --text-light: #9B8A7E;
  --shadow: rgba(255, 145, 164, 0.15);
  --radius: 20px;
  --radius-sm: 14px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-top: var(--safe-top);
  padding-bottom: calc(80px + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
}

/* ── Lock Screen ── */

.lock-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-pale), var(--lavender));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
  transition: opacity 0.4s, transform 0.4s;
}

.lock-screen.unlocked {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.lock-logo {
  width: 120px;
  height: 120px;
  animation: float 3s ease-in-out infinite;
}

.lock-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.lock-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: -12px;
}

.lock-btn {
  background: var(--pink);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lock-btn:active {
  transform: scale(0.96);
}

.lock-skip {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
}

/* ── Header ── */

.header {
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 36px;
  height: 36px;
}

.header-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), #e07090);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-date {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.header-right {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: var(--card);
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s;
}

.icon-btn:active {
  transform: scale(0.92);
}

/* ── Progress Card ── */

.progress-card {
  margin: 8px 20px 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  border-radius: var(--radius);
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.progress-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.progress-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.progress-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.progress-mascot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.progress-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.progress-greeting {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.progress-summary {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}

.progress-bar-bg {
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: white;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.85;
}

/* ── Category Chips ── */

.categories {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories::-webkit-scrollbar {
  display: none;
}

.chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  background: var(--card);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--shadow);
  transition: all 0.2s;
}

.chip.active {
  background: var(--pink);
  color: white;
}

/* ── Reminder Cards ── */

.section-title {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reminders-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.reminder-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.reminder-card.done {
  opacity: 0.6;
}

.reminder-card.done .reminder-title {
  text-decoration: line-through;
}

.reminder-card.overdue {
  border-left: 4px solid var(--coral);
}

.reminder-card.upcoming {
  border-left: 4px solid var(--mint);
}

.reminder-emoji {
  font-size: 32px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-pale);
  border-radius: 12px;
}

.reminder-info {
  flex: 1;
  min-width: 0;
}

.reminder-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.reminder-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.reminder-streak {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #FF6B6B;
  font-weight: 600;
}

.reminder-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  background: transparent;
  font-size: 0;
}

.reminder-check.checked {
  background: var(--pink);
  border-color: var(--pink);
  font-size: 16px;
  color: white;
  animation: pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reminder-actions {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.reminder-card.swiped .reminder-actions {
  transform: translateX(0);
}

.action-edit, .action-delete {
  width: 60px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.action-edit {
  background: var(--butter);
  color: #8B7355;
}

.action-delete {
  background: var(--coral);
  color: white;
}

/* ── Streak Week View ── */

.week-dots {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.week-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EEE;
}

.week-dot.done {
  background: var(--mint);
}

.week-dot.today {
  border: 1.5px solid var(--pink);
}

/* ── Empty State ── */

.empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-mascot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.empty-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Bottom Nav ── */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  padding-bottom: calc(8px + var(--safe-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  z-index: 100;
  border-radius: 20px 20px 0 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  transition: color 0.2s;
}

.nav-item.active {
  color: var(--pink);
}

.nav-item .nav-icon {
  font-size: 22px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #e07090);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 145, 164, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -28px;
  transition: transform 0.2s;
}

.fab:active {
  transform: scale(0.92);
}

/* ── Modal / Sheets ── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-radius: 24px 24px 0 0;
  padding: 20px;
  padding-bottom: calc(24px + var(--safe-bottom));
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  max-width: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.modal-sheet.show {
  transform: translateY(0);
}

.modal-handle {
  width: 36px;
  height: 4px;
  background: #DDD;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* ── Form Elements ── */

.form-group {
  margin-bottom: 14px;
  max-width: 100%;
  overflow: hidden;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 2px solid #F0E4E8;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--pink-pale);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--pink);
}

.form-input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.emoji-picker {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.emoji-option {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid transparent;
  background: var(--pink-pale);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.emoji-option.selected {
  border-color: var(--pink);
  background: white;
  transform: scale(1.1);
}

.recurrence-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.recurrence-btn {
  padding: 8px 12px;
  border-radius: 50px;
  border: 2px solid #F0E4E8;
  background: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
  white-space: nowrap;
}

.recurrence-btn.selected {
  border-color: var(--pink);
  background: var(--pink-pale);
  color: var(--pink);
}

.weekday-picker {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.weekday-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #F0E4E8;
  background: white;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}

.weekday-btn.selected {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--pink), #e07090);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.2s;
  margin-top: 8px;
}

.submit-btn:active {
  transform: scale(0.97);
}

.delete-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: 2px solid var(--coral);
  background: transparent;
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

/* ── Settings Page ── */

.page {
  display: none;
}

.page.active {
  display: block;
}

.settings-list {
  padding: 0 20px;
}

.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  box-shadow: 0 2px 8px var(--shadow);
}

.settings-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.settings-label {
  font-size: 15px;
  font-weight: 600;
}

.settings-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* Toggle Switch */
.toggle {
  width: 50px;
  height: 28px;
  border-radius: 14px;
  background: #DDD;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.toggle.on {
  background: var(--pink);
}

.toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.toggle.on::after {
  transform: translateX(22px);
}

/* ── Stats Page ── */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

.stat-card .stat-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

/* ── Toast ── */

.toast {
  position: fixed;
  top: calc(20px + var(--safe-top));
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: var(--text);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 500;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.error {
  background: var(--coral);
}

.toast.success {
  background: var(--mint);
  color: var(--text);
}

/* ── Reminder Alert (In-App) ── */

.reminder-alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.reminder-alert-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.reminder-alert {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.alert-mascot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.alert-mascot.bounce {
  animation: shake 0.5s ease-in-out infinite;
}

.reminder-alert-emoji {
  margin-top: 4px;
  margin-bottom: 2px;
}

.reminder-alert-title {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.reminder-alert-text {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-btn-group {
  display: flex;
  gap: 10px;
}

.alert-btn {
  flex: 1;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.alert-btn-done {
  background: var(--pink);
  color: white;
}

.alert-btn-snooze {
  background: var(--pink-pale);
  color: var(--pink);
}

/* ── Install Banner ── */

.install-banner {
  margin: 0 20px 16px;
  padding: 16px;
  background: linear-gradient(135deg, var(--lavender), var(--pink-pale));
  border-radius: var(--radius-sm);
  display: none;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.install-banner.show {
  display: flex;
}

.install-icon {
  font-size: 28px;
}

.install-text {
  flex: 1;
}

.install-text strong {
  display: block;
  font-size: 14px;
}

.install-text span {
  font-size: 12px;
  color: var(--text-light);
}

.install-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
}

/* ── Animations ── */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.reminder-card {
  animation: slideUp 0.3s ease-out backwards;
}

.reminders-list .reminder-card:nth-child(1) { animation-delay: 0s; }
.reminders-list .reminder-card:nth-child(2) { animation-delay: 0.05s; }
.reminders-list .reminder-card:nth-child(3) { animation-delay: 0.1s; }
.reminders-list .reminder-card:nth-child(4) { animation-delay: 0.15s; }
.reminders-list .reminder-card:nth-child(5) { animation-delay: 0.2s; }
.reminders-list .reminder-card:nth-child(6) { animation-delay: 0.25s; }
.reminders-list .reminder-card:nth-child(7) { animation-delay: 0.3s; }
.reminders-list .reminder-card:nth-child(8) { animation-delay: 0.35s; }

/* ── Confetti canvas ── */
#confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 400;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 0;
}

/* ── Dark mode support (optional) ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1A1018;
    --card: #2A1F25;
    --text: #F5E6E8;
    --text-light: #A89298;
    --shadow: rgba(0, 0, 0, 0.3);
  }

  .form-input {
    background: #3A2F35;
    border-color: #4A3F45;
    color: var(--text);
  }

  .chip {
    background: var(--card);
  }

  .toggle {
    background: #4A3F45;
  }

  .reminder-emoji {
    background: #3A2535;
  }
}

/* ── Lucide Icon Helpers ── */

.btn-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.section-icon {
  width: 18px;
  height: 18px;
  color: var(--pink);
  vertical-align: -3px;
}

.section-icon.overdue-icon {
  color: var(--coral);
}

.section-icon.done-icon {
  color: var(--mint);
}

.nav-lucide {
  width: 22px;
  height: 22px;
}

.nav-mochi-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

/* Emoji picker with Lucide icons */
.emoji-option svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.emoji-option.selected svg {
  color: var(--pink);
}

/* Stat card Lucide icons */
.stat-icon-svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.stat-icon-svg.flame {
  color: #FF6B6B;
}

.stat-icon-svg.done {
  color: var(--mint);
}

.stat-icon-svg.list {
  color: var(--pink);
}

.stat-icon-svg.trophy {
  color: #FFD700;
}

/* ── Alert button icons ── */
.alert-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.alert-btn .btn-icon {
  width: 16px;
  height: 16px;
}

/* ── Pull to Refresh ── */

.pull-indicator {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  z-index: 150;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card);
  border-radius: 50%;
  box-shadow: 0 2px 10px var(--shadow);
}

.pull-indicator svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
  transition: transform 0.3s;
}

.pull-indicator.pulling {
  transform: translateX(-50%) translateY(20px);
}

.pull-indicator.refreshing svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Reminder card icon (Lucide) ── */
.reminder-emoji svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}
