@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS — exact LanLens color system
   ============================================================ */
:root {
  /* Surfaces (dark default) */
  --bg:       #0f1117;
  --surface:  #1a1d2e;
  --surface2: #252840;
  --border:   #2d3152;
  --border2:  #38406a;

  /* Text */
  --text-1:   #e2e8f0;
  --text-2:   #94a3b8;
  --text-3:   #64748b;

  /* Evening accent — amber (matches LanLens warning) */
  --accent:      #f59e0b;
  --accent-dim:  rgba(245,158,11,0.12);
  --accent-ring: rgba(245,158,11,0.30);
  --on-accent:   #0f1117;

  /* Morning accent — emerald (matches LanLens success) */
  --m-accent:      #10b981;
  --m-accent-dim:  rgba(16,185,129,0.12);
  --m-accent-ring: rgba(16,185,129,0.30);

  /* Status */
  --success: #22c55e;
  --error:   #ef4444;

  /* Geometry */
  --r:  8px;
  --r2: 12px;
  --r3: 100px;

  /* Motion */
  --t: all 0.15s ease;
}

/* Light mode */
body.light {
  --bg:       #f1f5f9;
  --surface:  #ffffff;
  --surface2: #f8fafc;
  --border:   #e2e8f0;
  --border2:  #cbd5e1;
  --text-1:   #0f172a;
  --text-2:   #475569;
  --text-3:   #94a3b8;
  --accent-dim:  rgba(245,158,11,0.08);
  --accent-ring: rgba(245,158,11,0.25);
  --on-accent:   #ffffff;
  --m-accent-dim:  rgba(16,185,129,0.08);
  --m-accent-ring: rgba(16,185,129,0.25);
}

/* Morning mode — swap accent */
body.morning {
  --accent:      var(--m-accent);
  --accent-dim:  var(--m-accent-dim);
  --accent-ring: var(--m-accent-ring);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, var(--accent-dim), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(99,102,241,0.10), transparent 28rem),
    var(--bg);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
  transition: background 0.25s ease, color 0.25s ease;
}

button { cursor: pointer; font-family: inherit; border: none; outline: none; }
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
textarea, input[type="text"] { font-family: inherit; font-size: 16px; outline: none; }

.hidden { display: none !important; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border2); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 48px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.brand-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
}

.brand-version {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 2px 8px;
}

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

.ctrl-btn {
  height: 30px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  /* expand touch target without affecting layout */
  position: relative;
}

.ctrl-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
}

.ctrl-btn:hover {
  background: var(--surface2);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   LAYOUT
   ============================================================ */
#app {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  min-height: calc(100vh - 108px);
}

.app-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-3);
  font-size: 12px;
}

.app-footer a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  transition: var(--t);
}

.app-footer a:hover {
  color: var(--accent);
}

/* ============================================================
   SCREEN ANIMATION
   ============================================================ */
.screen { animation: fadeIn 0.2s ease; }

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

/* ============================================================
   GREETING & MODE SELECTOR
   ============================================================ */
.screen-center { display: flex; flex-direction: column; }

.greeting {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 4px;
  padding-top: 8px;
}

.mode-selector-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.mode-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .mode-cards { grid-template-columns: 1fr 1fr; }
}

.mode-card {
  background: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--surface2) 48%, var(--surface)));
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 20px 18px;
  text-align: left;
  cursor: pointer;
  transition: var(--t);
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mode-card:hover {
  border-color: var(--accent);
  background: var(--surface2);
}

.mode-card-icon { font-size: 24px; line-height: 1; }

.mode-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}

.mode-card-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ============================================================
   PROGRESS
   ============================================================ */
.progress-container { margin-bottom: 24px; }

.progress-track {
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.35s ease;
}

.progress-dots {
  display: flex;
  justify-content: space-between;
}

.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  flex-shrink: 0;
}

.progress-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
}

.progress-dot.done {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   STEP CARD
   ============================================================ */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 20px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 18px;
}

/* ============================================================
   MOOD PICKER
   ============================================================ */
.mood-picker {
  display: flex;
  gap: 6px;
}

.mood-btn {
  flex: 1;
  min-height: 72px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  cursor: pointer;
  transition: var(--t);
}

.mood-btn:hover {
  border-color: var(--border2);
  background: var(--surface);
}

.mood-btn.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.mood-emoji { font-size: 22px; line-height: 1; }

.mood-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mood-btn.selected .mood-label { color: var(--accent); }

/* ============================================================
   INPUTS
   ============================================================ */
.large-textarea {
  width: 100%;
  min-height: 148px;
  background: var(--surface2);
  color: var(--text-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  transition: var(--t);
}

.large-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.large-textarea::placeholder { color: var(--text-3); }

.large-textarea.intention-textarea {
  min-height: 88px;
  font-style: italic;
}

.tag-input {
  flex: 1;
  min-height: 44px;
  background: var(--surface2);
  color: var(--text-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 12px;
  font-size: 14px;
  transition: var(--t);
}

.tag-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.tag-input::placeholder { color: var(--text-3); }

/* ============================================================
   CHIPS (wins)
   ============================================================ */
.chip-input-area { display: flex; flex-direction: column; gap: 10px; }

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  color: var(--accent);
  border-radius: var(--r3);
  padding: 5px 10px 5px 12px;
  font-size: 12px;
  font-weight: 500;
  animation: popIn 0.15s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.chip-remove {
  background: none;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  opacity: 0.6;
  padding: 1px 2px;
  border-radius: 50%;
  transition: var(--t);
}
.chip-remove:hover { opacity: 1; }

.chip-input-row { display: flex; gap: 12px; }

/* ============================================================
   TASK LIST (evening step 4)
   ============================================================ */
.tasks-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }

.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 12px;
  animation: fadeIn 0.15s ease;
}

.task-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  min-width: 18px;
}

.task-text { flex: 1; font-size: 13px; color: var(--text-1); }

.task-remove {
  background: none;
  color: var(--text-3);
  font-size: 16px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: var(--r);
  transition: var(--t);
}
.task-remove:hover { background: rgba(239,68,68,0.12); color: var(--error); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-add {
  height: 44px;
  padding: 0 16px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--t);
}
.btn-add:hover { filter: brightness(1.1); }

.btn-primary {
  width: 100%;
  height: 44px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--t);
  border: none;
}
.btn-primary:hover { filter: brightness(1.1); }

.btn-secondary {
  height: 44px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: var(--t);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ============================================================
   STEP NAV
   ============================================================ */
.step-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.btn-nav {
  height: 44px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  transition: var(--t);
}

.btn-back {
  padding: 0 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.btn-back:hover { border-color: var(--border2); color: var(--text-1); }

.btn-next {
  flex: 1;
  max-width: 240px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
}
.btn-next:hover { filter: brightness(1.1); }

/* ============================================================
   COMPLETION SCREEN
   ============================================================ */
.screen-complete { text-align: center; padding-top: 16px; }

.complete-icon { font-size: 40px; margin-bottom: 14px; }

.complete-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.complete-text {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.export-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.btn-export {
  width: 100%;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: var(--t);
}
.btn-export:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.btn-restart {
  width: 100%;
  margin-top: 4px;
}

/* ============================================================
   MORNING FLOW
   ============================================================ */
.morning-screen .screen-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.morning-section { margin-bottom: 20px; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 8px;
}

/* Intention card */
.morning-intention-card {
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  border-radius: var(--r2);
  padding: 14px 16px;
}
.morning-intention-card .section-label { color: var(--accent); }

.intention-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin: 0;
}

/* Task list */
.morning-tasks-list { display: flex; flex-direction: column; gap: 6px; }

.morning-task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  cursor: pointer;
  transition: var(--t);
  min-height: 48px;
  user-select: none;
  -webkit-user-select: none;
}

.morning-task-item:hover { background: var(--surface2); border-color: var(--border2); }

.morning-task-item.done {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.05);
}

.morning-task-check {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1.5px solid var(--border2);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
  flex-shrink: 0;
  transition: var(--t);
}
.morning-task-item.done .morning-task-check {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.morning-task-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-1);
  line-height: 1.4;
}
.morning-task-item.done .morning-task-text {
  text-decoration: line-through;
  color: var(--text-3);
}

.btn-save-morning { margin-top: 4px; margin-bottom: 12px; }

.btn-back-top {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  transition: var(--t);
}
.btn-back-top:hover { color: var(--text-2); }

/* ============================================================
   EMPTY STATES & ERRORS
   ============================================================ */
.empty-icon { font-size: 36px; text-align: center; margin-bottom: 14px; }

.btn-group { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.empty-text {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  padding: 8px 0;
}

.field-error {
  font-size: 12px;
  color: var(--error);
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--r);
  padding: 7px 10px;
  margin-top: 6px;
  transition: var(--t);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 16px;
  animation: fadeIn 0.18s ease;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 20px;
  width: 100%;
  max-width: 540px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.2s ease;
}

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

.modal-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.md-preview {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-2);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 42vh;
  margin-bottom: 14px;
}

.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn-primary { flex: 1; }
.modal-actions .btn-secondary { flex-shrink: 0; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  z-index: 300;
  opacity: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.toast-success { border-color: rgba(34,197,94,0.4); color: var(--success); }
.toast.toast-error   { border-color: rgba(239,68,68,0.4); color: var(--error); }

/* ============================================================
   SCREEN-CENTER HELPER
   ============================================================ */
.screen-center .step-title,
.screen-center .step-desc   { text-align: center; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
.landing-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, var(--accent-dim), transparent 18rem),
    linear-gradient(145deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.landing-hero::after {
  content: '🧠';
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 54px;
  opacity: 0.12;
  transform: rotate(8deg);
}

.landing-tagline {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 8px;
}

.landing-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.landing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 520px) {
  .landing-features {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 14px;
}

.landing-feature-icon {
  font-size: 22px;
  line-height: 1;
}

.landing-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 3px;
}

.landing-feature-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}

.landing-data-note {
  font-size: 12px;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  background: var(--surface);
  padding: 10px 12px;
}

.landing-version {
  font-size: 11px;
  color: var(--text-3);
  text-align: right;
}

.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-cta {
  margin-top: 4px;
}

.landing-github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--t);
}

.landing-github:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ============================================================
   EXCEL IMPORT BOX
   ============================================================ */
.import-box {
  width: 100%;
  margin-top: 12px;
  background: var(--surface);
  border: 1px dashed var(--border2);
  border-radius: var(--r2);
  padding: 14px;
}

.import-hint {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.btn-upload {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
}

.btn-upload:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
