/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg: #0c0c10;
  --surface: #141418;
  --surface2: #1c1c22;
  --surface3: #242430;
  --border: #2a2a35;
  --border2: #33333f;

  --c-todo: #a78bfa;
  --c-pending: #fb923c;
  --c-done: #38bdf8;
  --c-complete: #4ade80;

  --accent: #a78bfa;
  --accent-dim: rgba(167, 139, 250, 0.12);
  --danger: #f87171;

  --text: #e2e2ec;
  --text-2: #9999b0;
  --text-3: #72728a;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --font-display: "Syne", sans-serif;
  --font-mono: "DM Mono", monospace;
  --font-body: "DM Sans", sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
}

button {
  font-family: inherit;
  cursor: pointer;
}
textarea {
  font-family: inherit;
}

/* ─── LOADER ─────────────────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.board-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  gap: 20px;
  flex-shrink: 0;
  z-index: 50;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.app-title span {
  color: var(--accent);
  margin: 0 4px;
}

.app-sub {
  font-size: 0.72rem;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.header-center {
  display: flex;
  align-items: center;
}

.date-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 8px 20px;
}

.date-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

.date-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

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

.btn-icon {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text-2);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  transition: all 0.15s;
}

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

.app-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* ─── SIDEBAR ────────────────────────────────────────────────────────────────── */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 20px 16px;
  gap: 20px;
}

/* ─── CALENDAR ───────────────────────────────────────────────────────────────── */
.calendar-wrap {
  width: 100%;
}

.calendar {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 12px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-month {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-2);
  border-radius: var(--radius-sm);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.15s;
}

.cal-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-dow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-3);
  padding: 4px 0;
  letter-spacing: 0.05em;
}

.cal-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-2);
  cursor: pointer;
  position: relative;
  transition: all 0.12s;
  user-select: none;
}

.cal-cell span {
  line-height: 1;
}

.cal-cell:hover:not(.empty) {
  background: var(--surface3);
  color: var(--text);
}

.cal-cell.empty {
  cursor: default;
}

.cal-cell.is-today {
  color: var(--accent);
  font-weight: 700;
}
.cal-cell.is-today::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.cal-cell.is-selected {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

.cal-cell.is-multi {
  background: rgba(167, 139, 250, 0.25);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
}

.cal-cell.has-tasks .task-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-complete);
  display: block;
}

.cal-cell.is-selected .task-dot {
  background: rgba(255, 255, 255, 0.6);
}

/* ─── ADD TASK FORM ──────────────────────────────────────────────────────────── */
.add-task-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.add-task-form textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.82rem;
  padding: 10px 12px;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}

.add-task-form textarea:focus {
  border-color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: 0.04em;
  transition:
    opacity 0.15s,
    transform 0.1s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 10px 16px;
  transition: all 0.15s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── STATS ──────────────────────────────────────────────────────────────────── */
.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-bar {
  height: 4px;
  background: var(--surface3);
  border-radius: 99px;
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  background: var(--c-complete);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
}

.stats-pct {
  color: var(--c-complete);
  font-weight: 500;
}

/* ─── MAIN / BOARD ───────────────────────────────────────────────────────────── */
.main-content {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 24px;
}

#boardMount {
  height: 100%;
}

.board {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 16px;
  height: 100%;
  min-width: 1080px;
}

/* ─── COLUMN ─────────────────────────────────────────────────────────────────── */
.column {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.col-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.col-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.col-count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 99px;
}

.col-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
}

.col-body.drag-over {
  background: var(--accent-dim);
  outline: 1px dashed var(--accent);
  outline-offset: -4px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.empty-col {
  text-align: center;
  padding: 28px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  opacity: 0.4;
  user-select: none;
  letter-spacing: 0.05em;
}

/* ─── CARD ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 12px 10px 16px;
  position: relative;
  cursor: grab;
  transition:
    box-shadow 0.18s,
    transform 0.18s,
    border-color 0.18s;
  animation: fadeUp 0.2s ease;
}

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

.card:hover {
  border-color: var(--border2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.card.dragging {
  opacity: 0.35;
  cursor: grabbing;
}

.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-3);
  background: var(--bg);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0.03em;
}

.card-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  word-break: break-word;
}

/* ─── CARD COMMENTS ──────────────────────────────────────────────────────────── */
.btn-toggle-comments {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.7rem;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-toggle-comments:hover {
  color: var(--accent);
}

.comments-section {
  margin-top: 10px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.comment-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.45;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.comment-item > span {
  flex: 1;
}

.btn-del-comment {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 1px 3px;
  border-radius: 3px;
  transition:
    color 0.15s,
    background 0.15s;
}

.btn-del-comment:hover {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.1);
}

.comment-row {
  display: flex;
  gap: 6px;
}

.comment-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.76rem;
  padding: 6px 9px;
  outline: none;
  resize: none;
  line-height: 1.4;
  transition: border-color 0.2s;
  min-height: 32px;
  max-height: 80px;
}

.comment-input:focus {
  border-color: var(--accent);
}

.btn-send-comment {
  background: var(--surface3);
  border: 1px solid var(--border2);
  color: var(--text-3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  padding: 6px 10px;
  transition: all 0.15s;
}

.btn-send-comment:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─── CARD ACTIONS ───────────────────────────────────────────────────────────── */
.card-actions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  align-items: center;
}

.btn-move {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  transition: all 0.13s;
  white-space: nowrap;
}

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

.btn-delete-card {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.72rem;
  padding: 3px 6px;
  border-radius: 4px;
  transition:
    color 0.15s,
    background 0.15s;
}

.btn-delete-card:hover {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.1);
}

/* ─── MODAL ──────────────────────────────────────────────────────────────────── */
.modal-backdrop {
  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: 1000;
}

.modal-backdrop.hidden {
  display: none;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.2s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.9rem;
  padding: 4px;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--danger);
}

.modal-desc {
  font-size: 0.8rem;
  color: var(--text-2);
}

.modal-selected {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-align: center;
  padding: 8px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
}

.modal-footer {
  display: flex;
  gap: 10px;
}
.modal-footer .btn-secondary,
.modal-footer .btn-primary {
  flex: 1;
  text-align: center;
}

/* ─── TOAST ──────────────────────────────────────────────────────────────────── */
.toast {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  max-width: 300px;
}

.toast.toast-show {
  opacity: 1;
  transform: translateY(0);
}
.toast.toast-success {
  border-color: var(--c-complete);
  color: var(--c-complete);
}
.toast.toast-warn {
  border-color: var(--c-pending);
  color: var(--c-pending);
}
.toast.toast-error {
  border-color: var(--danger);
  color: var(--danger);
}
.toast.toast-info {
  border-color: var(--c-done);
  color: var(--c-done);
}

/* ─── LIGHT MODE ─────────────────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg: #f0f0f7;
  --surface: #ffffff;
  --surface2: #f5f5fb;
  --surface3: #e8e8f2;
  --border: #d4d4e8;
  --border2: #c4c4d8;

  --c-todo: #7c6af0;
  --c-pending: #e07820;
  --c-done: #0080b0;
  --c-complete: #30a060;

  --accent: #7c6af0;
  --accent-dim: rgba(124, 106, 240, 0.1);
  --danger: #d04040;

  --text: #1a1a2e;
  --text-2: #4a4a6e;
  --text-3: #8a8aaa;
}

[data-theme="light"] .card {
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

[data-theme="light"] .card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

[data-theme="light"] .card-num {
  background: var(--surface3);
}

[data-theme="light"] .modal-backdrop {
  background: rgba(0,0,0,0.4);
}

/* ─── COMMENT EDIT ───────────────────────────────────────────────────────────── */
.comment-item {
  position: relative;
}

.comment-text {
  flex: 1;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
  word-break: break-word;
}

.comment-btns {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}

.comment-item:hover .comment-btns {
  opacity: 1;
}

.btn-edit-comment {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.7rem;
  cursor: pointer;
  padding: 1px 3px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.btn-edit-comment:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.comment-item-editing {
  flex-direction: column;
  gap: 6px;
}

.comment-edit-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.75rem;
  font-family: inherit;
  padding: 5px 8px;
  outline: none;
  resize: vertical;
  min-height: 48px;
  line-height: 1.4;
  user-select: text;
  -webkit-user-select: text;
}

.comment-edit-actions {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
}

.btn-save-comment {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 3px;
  transition: opacity 0.15s;
}

.btn-save-comment:hover {
  opacity: 0.85;
}

.btn-cancel-edit {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-3);
  font-size: 0.7rem;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 3px;
  transition: color 0.15s;
}

.btn-cancel-edit:hover {
  color: var(--danger);
}

.comments-section {
  user-select: text;
  -webkit-user-select: text;
}

/* ─── AUTH SCREEN ────────────────────────────────────────────────────────────── */
.auth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg);
  padding: 24px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.25s ease;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  text-align: center;
}

.auth-title span {
  color: var(--accent);
  margin: 0 4px;
}

.auth-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: -14px;
}

.auth-tabs {
  display: flex;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
  gap: 3px;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 7px 0;
  border-radius: calc(var(--radius) - 3px);
  transition: all 0.15s;
}

.auth-tab-active {
  background: var(--accent);
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.2s;
}

.auth-input:focus {
  border-color: var(--accent);
}

.auth-submit {
  width: 100%;
  padding: 11px;
  margin-top: 4px;
}

.auth-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid var(--danger);
  border-radius: var(--radius-sm);
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 9px 12px;
  line-height: 1.5;
}

.auth-error.hidden {
  display: none;
}

.btn-logout {
  border-color: rgba(248, 113, 113, 0.3);
  color: var(--text-3);
}

.btn-logout:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
