:root {
  --bg: #F2F1ED;
  --card: #FFF;
  --border: #E4E3DE;
  --border-light: #EDECE8;
  --text: #1B1A17;
  --text-2: #706F69;
  --text-3: #AEADA8;
  --accent: #3B70D8;
  --accent-bg: #EEF2FC;
  --income: #1D8A52;
  --income-bg: #EDF7F2;
  --expense: #C8411B;
  --expense-bg: #FBF0EC;
  --savings: oklch(0.48 0.16 285);
  --savings-bg: oklch(0.97 0.03 285);
  --today: #D97D2A;
  --sh-sm: 0 1px 2px rgba(0,0,0,.06);
  --sh: 0 2px 8px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --sh-lg: 0 8px 24px rgba(0,0,0,.12);
  --r: 10px;
  --r-sm: 6px;
  --panel: 320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body, #root { height: 100%; overflow: hidden; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; font-size: 14px; }
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* HOME */
.home-page { height: 100%; display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.home-header { display: flex; align-items: center; justify-content: space-between; padding: 40px 0 28px; }
.home-header h1 { font-size: 22px; font-weight: 600; letter-spacing: -.3px; }
.budget-list { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding-bottom: 32px; }
.empty-home { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--text-2); text-align: center; padding: 60px 0; }
.empty-home-icon { width: 64px; height: 64px; background: var(--card); border: 1.5px solid var(--border); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: var(--sh-sm); }
/* .budget-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; cursor: pointer; display: flex; align-items: center; gap: 16px; transition: box-shadow .15s, transform .1s; box-shadow: var(--sh-sm); } — budget-card/style.module.scss */
/* .budget-card:hover { box-shadow: var(--sh); transform: translateY(-1px); } — budget-card/style.module.scss */
.budget-card-icon { width: 44px; height: 44px; background: var(--accent-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.budget-card-info { flex: 1; min-width: 0; }
.budget-card-name { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.budget-card-meta { color: var(--text-2); font-size: 13px; }
.budget-card-balance { font-size: 18px; font-weight: 600; }
.budget-card-balance.neg { color: var(--expense); }

/* BUTTONS */
/* .btn-primary { background: var(--accent); color: #fff; border-radius: var(--r-sm); padding: 9px 18px; font-size: 14px; font-weight: 500; transition: opacity .15s; } — button/style.module.scss */
/* .btn-primary:hover { opacity: .88; } — button/style.module.scss */
/* .btn-primary:disabled { opacity: .45; cursor: default; } — button/style.module.scss */
/* .btn-secondary { background: var(--border); color: var(--text); border-radius: var(--r-sm); padding: 9px 18px; font-size: 14px; font-weight: 500; transition: background .15s; } — button/style.module.scss */
/* .btn-secondary:hover { background: #DAD9D4; } — button/style.module.scss */
/* .btn-icon { width: 32px; height: 32px; border-radius: 8px; color: var(--text-2); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background .12s; flex-shrink: 0; } — button/style.module.scss */
/* .btn-icon:hover { background: var(--border-light); } — button/style.module.scss */
/* .btn-sm { padding: 5px 10px; border-radius: var(--r-sm); font-size: 12px; font-weight: 500; } — button/style.module.scss */
/* .nav-btn-desktop { display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; color: var(--accent); background: var(--accent-bg); border: none; cursor: pointer; transition: opacity .12s; white-space: nowrap; flex-shrink: 0; } — pages/Budget/style.module.scss */
/* .nav-btn-desktop:hover { opacity: .82; } — pages/Budget/style.module.scss */

/* MODALS */
/* .overlay { position: fixed; inset: 0; background: rgba(20,18,14,.4); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; animation: fadeIn .15s ease; } */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* .modal { background: var(--card); border-radius: 14px; box-shadow: var(--sh-lg); width: 100%; max-width: 460px; animation: slideUp .18s ease; max-height: calc(100vh - 60px); overflow-y: auto; display: flex; flex-direction: column; }
.modal.wide { max-width: 560px; } */
@keyframes slideUp { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
/* .modal-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px 0; margin-bottom: 16px; flex-shrink: 0; }
.modal-header h2 { font-size: 17px; font-weight: 600; }
.modal-body { padding: 0 18px; overflow-y: auto; flex: 1; }
.modal-footer { display: flex; gap: 10px; justify-content: flex-end; padding: 16px 18px; border-top: 1px solid var(--border-light); margin-top: 16px; flex-shrink: 0; } */

/* TABS */
/* .modal-tabs { display: flex; gap: 2px; padding: 0 18px; margin-bottom: 14px; border-bottom: 1px solid var(--border-light); flex-shrink: 0; } — modal-form/style.module.scss */
/* .modal-tab { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text-3); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .12s, border-color .12s; } — modal-form/style.module.scss */
/* .modal-tab.active { color: var(--accent); border-bottom-color: var(--accent); } — modal-form/style.module.scss */

/* FORMS */
/* .form-group { margin-bottom: 14px; } — forms/forms.module.scss */
/* .form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; } — forms/forms.module.scss */
/* .form-group input, .form-group select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--bg); color: var(--text); outline: none; transition: border-color .12s; } — forms/forms.module.scss */
/* .form-group input:focus, .form-group select:focus { border-color: var(--accent); background: #fff; } — forms/forms.module.scss */
/* .form-group small { display: block; color: var(--text-3); font-size: 12px; margin-top: 4px; } — forms/forms.module.scss */
/* .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } — forms/forms.module.scss */
/* .type-toggle { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 3px; gap: 3px; margin-bottom: 14px; } — toggle-type/style.module.scss */
/* .type-toggle button { padding: 8px; border-radius: 5px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: background .12s, color .12s; } — toggle-type/style.module.scss */
/* .type-toggle button.active-expense { background: var(--expense-bg); color: var(--expense); } — toggle-type/style.module.scss */
/* .type-toggle button.active-income { background: var(--income-bg); color: var(--income); } — toggle-type/style.module.scss */
/* .plan-toggle { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 3px; gap: 3px; } — toggle-field/style.module.scss */
/* .plan-toggle button { padding: 7px; border-radius: 5px; font-size: 13px; font-weight: 500; color: var(--text-2); transition: background .12s, color .12s; } — toggle-field/style.module.scss */
/* .plan-toggle button.active { background: var(--card); color: var(--text); box-shadow: var(--sh-sm); } — toggle-field/style.module.scss */
/* .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; } — categories-field/style.module.scss */
/* .cat-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 7px 3px; border-radius: var(--r-sm); border: 1.5px solid var(--border); background: var(--bg); font-size: 11px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: border-color .12s, color .12s, background .12s; text-align: center; line-height: 1.2; } — categories-field/style.module.scss */
/* .cat-btn .ci { font-size: 17px; } — categories-field/style.module.scss */
/* .cat-btn:hover { border-color: var(--accent); color: var(--accent); } — categories-field/style.module.scss */
/* .cat-btn.selected { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); } — categories-field/style.module.scss */

/* ICON PICKER */
/* .icon-picker { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; } — choose-icon/style.module.scss */
/* .icon-opt { width: 38px; height: 38px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .12s, background .12s; } — choose-icon/style.module.scss */
/* .icon-opt:hover { border-color: var(--border); background: var(--border-light); } — choose-icon/style.module.scss */
/* .icon-opt.selected { border-color: var(--accent); background: var(--accent-bg); } — choose-icon/style.module.scss */
/* .icon-preview { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-bg); border: 1.5px solid var(--border); font-size: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } — choose-icon/style.module.scss */

/* CATEGORY EDITOR */
.cat-editor-section { margin-bottom: 12px; }
.cat-editor-title { font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.cat-editor-row { display: flex; align-items: center; gap: 6px; padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.cat-editor-row:last-child { border-bottom: none; }
.cat-icon-input { width: 40px; height: 34px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--bg); text-align: center; font-size: 18px; outline: none; }
.cat-icon-input:focus { border-color: var(--accent); background: #fff; }
.cat-label-input { flex: 1; padding: 6px 9px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--bg); outline: none; font-size: 13px; }
.cat-label-input:focus { border-color: var(--accent); background: #fff; }
/* .btn-cat-del { width: 26px; height: 26px; border-radius: 5px; color: var(--text-3); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .1s, color .1s; flex-shrink: 0; } — button/style.module.scss */
/* .btn-cat-del:hover { background: var(--expense-bg); color: var(--expense); } — button/style.module.scss */
/* .btn-add-cat { display: flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: var(--r-sm); border: 1.5px dashed var(--border); color: var(--text-2); font-size: 12px; font-weight: 500; margin-top: 6px; transition: border-color .12s, color .12s; } — button/style.module.scss */
/* .btn-add-cat:hover { border-color: var(--accent); color: var(--accent); } — button/style.module.scss */

/* BUDGET VIEW HEADER — pages/Budget/style.module.scss */
/* .budget-view { height: 100%; display: flex; flex-direction: column; overflow: hidden; } — pages/Budget/style.module.scss */
/* .budget-header { background: var(--card); border-bottom: 1px solid var(--border); padding: 0 14px; display: flex; align-items: center; gap: 8px; height: 52px; flex-shrink: 0; } — pages/Budget/style.module.scss */
/* .btn-back { color: var(--accent); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 4px; padding: 5px 7px; border-radius: var(--r-sm); transition: background .12s; white-space: nowrap; } — button/style.module.scss */
/* .btn-back:hover { background: var(--accent-bg); } — button/style.module.scss */
/* .budget-header-inner { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; } — pages/Budget/style.module.scss */
/* .budget-header-icon { font-size: 18px; flex-shrink: 0; } — pages/Budget/style.module.scss */
/* .budget-header-title { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } — pages/Budget/style.module.scss */
/* .btn-gear { width: 28px; height: 28px; border-radius: 7px; color: var(--text-3); font-size: 15px; display: flex; align-items: center; justify-content: center; transition: background .12s, color .12s; flex-shrink: 0; } — button/style.module.scss */
/* .btn-gear:hover { background: var(--border-light); color: var(--text-2); } — button/style.module.scss */
/* .view-toggle { display: flex; background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 2px; gap: 2px; flex-shrink: 0; } — pages/Budget/style.module.scss */
/* .view-toggle button { padding: 3px 11px; border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--text-2); transition: background .12s, color .12s; } — pages/Budget/style.module.scss */
/* .view-toggle button.active { background: var(--card); color: var(--text); box-shadow: var(--sh-sm); } — pages/Budget/style.module.scss */
/* .month-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; } — pages/Budget/style.module.scss */
/* .month-nav span { font-size: 13px; font-weight: 500; min-width: 110px; text-align: center; } — pages/Budget/style.module.scss */
/* .month-nav-btn { width: 28px; height: 28px; border-radius: 7px; color: var(--text-2); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background .12s; } — pages/Budget/style.module.scss */
/* .month-nav-btn:hover { background: var(--border-light); color: var(--text); } — pages/Budget/style.module.scss */

/* SUMMARY — also in pages/Budget/style.module.scss; kept here for dashboard-view */
.summary-bar { background: var(--card); border-bottom: 1px solid var(--border); display: flex; flex-shrink: 0; }
/* .summary-item { flex: 1; min-width: 90px; padding: 9px 14px; border-right: 1px solid var(--border-light); } — summary-item/style.module.scss */
/* .summary-item:last-child { border-right: none; } — summary-item/style.module.scss */
.summary-label { font-size: 10px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; white-space: nowrap; }
.summary-value { font-size: 15px; font-weight: 600; letter-spacing: -.3px; white-space: nowrap; }
.summary-value.neg { color: var(--expense); }
.summary-value.pos { color: var(--income); }

/* CALENDAR */
/* .calendar-container { flex: 1; display: flex; overflow: hidden; }
.calendar-wrapper { flex: 1; overflow-y: auto; padding: 10px; min-width: 0; }
.calendar-day-headers { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 3px; }
.cal-day-hdr { text-align: center; font-size: 10px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; padding: 3px 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; } */
/* .cal-cell-empty { min-height: 92px; }
.cal-cell { background: var(--card); border: 1.5px solid var(--border-light); border-radius: var(--r); padding: 6px; min-height: 92px; cursor: pointer; transition: border-color .12s, box-shadow .12s; display: flex; flex-direction: column; gap: 2px; user-select: none; }
.cal-cell:hover { border-color: var(--border); box-shadow: var(--sh-sm); }
.cal-cell.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); background: #FAFCFF; }
.cal-cell.today .cal-date-num { color: var(--today); }
.cal-cell.today { border-color: var(--today); }
.cal-cell.today.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.cal-date { display: flex; align-items: baseline; gap: 3px; }
.cal-date-num { font-size: 13px; font-weight: 600; line-height: 1; }
.cal-date-mon { font-size: 10px; font-weight: 500; color: var(--text-3); }
.cal-balance { font-size: 10px; font-weight: 500; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-balance.neg { color: var(--expense); }
.cal-chips { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cal-chip { font-size: 9px; font-weight: 500; padding: 1px 4px; border-radius: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.5; }
.cal-chip.expense { background: var(--expense-bg); color: var(--expense); }
.cal-chip.income { background: var(--income-bg); color: var(--income); }
.cal-chip.savings { background: var(--savings-bg); color: var(--savings); }
.cal-chip.confirmed { opacity: .6; }
.cal-chip-more { font-size: 9px; color: var(--text-3); } */

/* SIDE PANEL */
/* .side-panel { width: var(--panel); flex-shrink: 0; background: var(--card); border-left: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; animation: slideInR .18s ease; }
@keyframes slideInR { from { transform: translateX(16px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.panel-header { padding: 13px 13px 9px; border-bottom: 1px solid var(--border-light); display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; flex-shrink: 0; }
.panel-title { font-size: 16px; font-weight: 600; letter-spacing: -.2px; }
.panel-sub { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.panel-sub span { font-weight: 600; color: var(--text); }
.panel-sub span.neg { color: var(--expense); }
.panel-hint { font-size: 10px; color: var(--text-3); padding: 5px 13px; flex-shrink: 0; border-bottom: 1px solid var(--border-light); line-height: 1.6; }
.panel-body { flex: 1; overflow-y: auto; }
.panel-empty { padding: 28px 16px; text-align: center; color: var(--text-3); font-size: 13px; line-height: 1.7; }
.panel-footer { padding: 10px 12px; border-top: 1px solid var(--border-light); flex-shrink: 0; display: flex; gap: 8px; }
.btn-add-tx { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px; border-radius: var(--r-sm); border: 1.5px dashed var(--border); color: var(--text-2); font-size: 13px; font-weight: 500; transition: border-color .12s, color .12s, background .12s; }
.btn-add-tx:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); } */

/* TX ITEMS */
/* .tx-section { padding: 5px 10px 0; } — tx.module.scss */
/* .tx-section-title { font-size: 10px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; padding: 6px 2px 3px; } — tx.module.scss */
/* .tx-item { border-radius: var(--r-sm); margin-bottom: 4px; overflow: hidden; border: 1px solid var(--border-light); } — tx-item/style.module.scss */
/* .tx-item-main { display: flex; align-items: center; gap: 7px; padding: 8px; cursor: pointer; transition: background .1s; } — tx-item/style.module.scss */
/* .tx-item-main:hover { background: var(--bg); } — tx-item/style.module.scss */
/* .tx-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; } — tx-item/style.module.scss */
/* .tx-dot.expense { background: var(--expense); } — tx-item/style.module.scss */
/* .tx-dot.income { background: var(--income); } — tx-item/style.module.scss */
/* .tx-dot.savings { background: var(--savings); } — tx-item/style.module.scss */
/* .tx-dot.dim { opacity: .35; } — tx-item/style.module.scss */
/* .tx-info { flex: 1; min-width: 0; } — tx-item/style.module.scss */
/* .tx-desc-wrap { display: flex; align-items: center; gap: 3px; } — tx-item/style.module.scss */
/* .tx-desc { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; } — tx-item/style.module.scss */
/* .tx-edit-btn { opacity: 0; font-size: 11px; color: var(--text-3); padding: 1px 3px; border-radius: 3px; flex-shrink: 0; transition: opacity .1s; } — tx-item/style.module.scss */
/* .tx-item-main:hover .tx-edit-btn { opacity: 1; } — tx-item/style.module.scss */
/* .tx-edit-btn:hover { background: var(--border-light); color: var(--text-2); } — tx-item/style.module.scss */
/* .tx-desc-input { font-size: 13px; font-weight: 500; border: none; border-bottom: 1.5px solid var(--accent); outline: none; background: transparent; width: 100%; padding: 0; min-width: 0; } — tx-item/style.module.scss */
/* .tx-meta { display: flex; gap: 4px; margin-top: 2px; align-items: center; flex-wrap: wrap; } — tx-item/style.module.scss */
/* .tx-badge { font-size: 10px; font-weight: 600; padding: 1px 5px; border-radius: 3px; letter-spacing: .2px; } — tx-item/style.module.scss */
/* .tx-badge.plan { background: var(--accent-bg); color: var(--accent); } — tx-item/style.module.scss */
/* .tx-badge.fact { background: #E6F5EE; color: var(--income); } — tx-item/style.module.scss */
/* .tx-cat-label { font-size: 10px; color: var(--text-3); display: inline-flex; align-items: center; gap: 2px; cursor: pointer; border-radius: 3px; padding: 1px 4px; transition: background .12s, color .12s; } — tx-item/style.module.scss */
/* .tx-cat-label:hover { background: var(--border-light); color: var(--text-2); } — tx-item/style.module.scss */
/* .tx-cat-add { font-size: 10px; color: var(--text-3); padding: 1px 4px; border-radius: 3px; border: 1px dashed var(--border); cursor: pointer; transition: border-color .12s, color .12s; } — tx-item/style.module.scss */
/* .tx-cat-add:hover { border-color: var(--accent); color: var(--accent); } — tx-item/style.module.scss */
/* .tx-planned-val { font-size: 10px; color: var(--text-3); } — tx-item/style.module.scss */
/* .tx-amount-col { display: flex; align-items: center; gap: 4px; flex-shrink: 0; } — tx-item/style.module.scss */
/* .tx-amount { font-size: 13px; font-weight: 600; white-space: nowrap; } — tx-item/style.module.scss */
/* .tx-amount.expense { color: var(--expense); } — tx-item/style.module.scss */
/* .tx-amount.income { color: var(--income); } — tx-item/style.module.scss */
/* .tx-amount.savings { color: var(--savings); } — tx-item/style.module.scss */
/* .tx-amount.dim { opacity: .45; } — tx-item/style.module.scss */
/* .btn-tx-del { width: 20px; height: 20px; border-radius: 4px; color: var(--text-3); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background .1s, color .1s; flex-shrink: 0; } — tx-item/style.module.scss */
/* .btn-tx-del:hover { background: var(--expense-bg); color: var(--expense); } — tx-item/style.module.scss */
/* .tx-cat-picker { padding: 6px 8px 8px; background: var(--bg); border-top: 1px solid var(--border-light); display: flex; flex-wrap: wrap; gap: 4px; } — tx-item/style.module.scss */
/* .tx-cat-opt { font-size: 11px; padding: 3px 7px; border-radius: 4px; border: 1.5px solid var(--border); background: var(--card); color: var(--text-2); cursor: pointer; transition: border-color .12s, color .12s; } — tx-item/style.module.scss */
/* .tx-cat-opt:hover { border-color: var(--accent); color: var(--accent); } — tx-item/style.module.scss */
/* .tx-cat-opt.sel { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); } — tx-item/style.module.scss */
/* .tx-confirm-form { padding: 6px 8px 8px; background: var(--accent-bg); border-top: 1px solid #D6E4F9; display: flex; gap: 5px; align-items: center; } — tx-item/style.module.scss */
/* .tx-confirm-form input { flex: 1; padding: 6px 8px; border: 1.5px solid #C0D4F5; border-radius: var(--r-sm); background: #fff; outline: none; font-size: 13px; } — tx-item/style.module.scss */
/* .tx-confirm-form input:focus { border-color: var(--accent); } — tx-item/style.module.scss */
/* .btn-confirm { background: var(--accent); color: #fff; padding: 6px 9px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; } — tx-item/style.module.scss */
/* .btn-confirm:hover { opacity: .88; } — tx-item/style.module.scss */

/* MONTH PANEL */
/* .mcat-row { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: var(--r-sm); border: 1px solid var(--border-light); margin-bottom: 4px; } — tx-categories/style.module.scss */
/* .mcat-icon { font-size: 16px; flex-shrink: 0; } — tx-categories/style.module.scss */
/* .mcat-label { flex: 1; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } — tx-categories/style.module.scss */
/* .mcat-amounts { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; } — tx-categories/style.module.scss */
/* .mcat-exp { font-size: 12px; font-weight: 600; color: var(--expense); } — tx-categories/style.module.scss */
/* .mcat-inc { font-size: 12px; font-weight: 600; color: var(--income); } — tx-categories/style.module.scss */

/* YEAR VIEW */
/* .year-container { flex: 1; display: flex; overflow: hidden; }
.year-wrapper { flex: 1; overflow-y: auto; padding: 14px; }
.year-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ymc { background: var(--card); border: 1.5px solid var(--border-light); border-radius: 12px; padding: 13px; cursor: pointer; transition: border-color .12s, box-shadow .12s; min-height: 130px; display: flex; flex-direction: column; gap: 7px; user-select: none; }
.ymc:hover { border-color: var(--border); box-shadow: var(--sh); }
.ymc.sel { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); background: #FAFCFF; }
.ymc.cur .ymc-name { color: var(--today); }
.ymc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; }
.ymc-name { font-size: 14px; font-weight: 600; }
.ymc-bal { font-size: 12px; font-weight: 600; text-align: right; white-space: nowrap; }
.ymc-bal.neg { color: var(--expense); }
.ymc-cats { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.ymc-cat { font-size: 11px; color: var(--text-2); display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.ymc-cat-left { display: flex; align-items: center; gap: 3px; min-width: 0; overflow: hidden; }
.ymc-cat-amt { font-size: 10px; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.ymc-empty { font-size: 11px; color: var(--text-3); }
.ymc-count { font-size: 10px; color: var(--text-3); margin-top: auto; } */

/* PROFILE */
.profile-page { height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.profile-header { background: var(--card); border-bottom: 1px solid var(--border); padding: 0 14px; display: flex; align-items: center; height: 52px; flex-shrink: 0; }
.profile-header-title { font-weight: 600; font-size: 15px; flex: 1; text-align: center; }
.profile-header-spacer { width: 60px; flex-shrink: 0; }
.profile-content { flex: 1; overflow-y: auto; display: flex; flex-direction: column; align-items: center; padding: 48px 20px 40px; gap: 0; }
.profile-avatar-section { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 14px; }
.profile-avatar-btn { width: 88px; height: 88px; border-radius: 24px; background: var(--accent-bg); border: 2px solid var(--border); font-size: 46px; display: flex; align-items: center; justify-content: center; transition: border-color .12s, box-shadow .12s; cursor: pointer; line-height: 1; }
.profile-avatar-btn:hover { border-color: var(--accent); box-shadow: var(--sh); }
.profile-avatar-change { font-size: 12px; color: var(--accent); font-weight: 500; padding: 3px 10px; border-radius: var(--r-sm); transition: background .12s; }
.profile-avatar-change:hover { background: var(--accent-bg); }
.profile-avatar-picker { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; max-width: 300px; padding: 12px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh); margin-top: 4px; }
.profile-avatar-opt { width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--bg); font-size: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .12s, background .12s; line-height: 1; }
.profile-avatar-opt:hover { background: var(--border-light); }
.profile-avatar-opt.selected { border-color: var(--accent); background: var(--accent-bg); }
.profile-name-section { margin-bottom: 36px; display: flex; align-items: center; justify-content: center; }
.profile-name { font-size: 22px; font-weight: 600; letter-spacing: -.3px; display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: var(--r-sm); transition: background .12s; color: var(--text); }
.profile-name:hover { background: var(--border-light); }
.profile-name-hint { font-size: 13px; color: var(--text-3); font-weight: 400; }
.profile-name-input { font-size: 22px; font-weight: 600; letter-spacing: -.3px; border: none; border-bottom: 2px solid var(--accent); outline: none; background: transparent; text-align: center; padding: 5px 4px; min-width: 160px; color: var(--text); }
.profile-stats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.profile-stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 28px; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 110px; box-shadow: var(--sh-sm); }
.profile-stat-value { font-size: 26px; font-weight: 700; letter-spacing: -.5px; line-height: 1; }
.profile-stat-label { font-size: 11px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }

/* HOME AVATAR BUTTON */
.home-avatar-btn { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-bg); border: 1.5px solid var(--border); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: border-color .12s, box-shadow .12s; cursor: pointer; flex-shrink: 0; line-height: 1; }
.home-avatar-btn:hover { border-color: var(--accent); box-shadow: var(--sh-sm); }

/* MOBILE */
/* .mob-backdrop { position: fixed; inset: 0; background: rgba(20,18,14,.25); z-index: 40; animation: fadeIn .18s; } — side-panel/style.module.scss */
/* .mob-sheet { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-radius: 16px 16px 0 0; box-shadow: 0 -4px 32px rgba(0,0,0,.14); z-index: 50; display: flex; flex-direction: column; max-height: 64vh; animation: sheetUp .2s ease; } — side-panel/style.module.scss */
/* @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } } — side-panel/style.module.scss */
/* .mob-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 9px auto 0; flex-shrink: 0; } — side-panel/style.module.scss */

/* BUDGET BOTTOM NAV (mobile only) — pages/Budget/style.module.scss */
/* .budget-bottom-nav { display: none; } — pages/Budget/style.module.scss */

/* @media (max-width: 760px) {
  .budget-bottom-nav { display: flex; border-top: 1px solid var(--border); background: var(--card); flex-shrink: 0; }
  .budget-bottom-nav-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 0 10px; font-size: 10px; font-weight: 500; color: var(--text-3); transition: color .12s; }
  .budget-bottom-nav-btn.active { color: var(--accent); }
  .budget-bottom-nav-btn span:first-child { font-size: 18px; line-height: 1; }
  .hide-mobile { display: none !important; }
} — pages/Budget/style.module.scss */

@media (max-width: 760px) {
  /* .budget-header { padding: 0 9px; height: 48px; gap: 5px; } — pages/Budget/style.module.scss */
  /* .budget-header-title { font-size: 13px; } — pages/Budget/style.module.scss */
  /* .month-nav span { min-width: 88px; font-size: 12px; } — pages/Budget/style.module.scss */
  /* .view-toggle button { padding: 3px 7px; font-size: 12px; } — pages/Budget/style.module.scss */
  .summary-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  /* .summary-item { padding: 7px 8px; } — summary-item/style.module.scss */
  .summary-label { font-size: 9px; }
  .summary-value { font-size: 12px; }
  /* .calendar-wrapper { padding: 5px; } — month-grid/style.module.scss */
  /* .cal-cell { min-height: 58px; padding: 4px; border-radius: 7px; }
  .cal-date-num { font-size: 12px; }
  .cal-balance { font-size: 9px; }
  .cal-chip { font-size: 8px; }
  .side-panel { display: none; } */
  /* .btn-back span { display: none; } — button/style.module.scss */
  /* .year-grid { grid-template-columns: repeat(2, 1fr); } */
}
@media (min-width: 761px) {
  .mob-backdrop, .mob-sheet { display: none !important; }
}

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }


/*# sourceMappingURL=main.792fef8fd63821db10c2.css.map*/