/* =====================================================================
   VESTARA — Design System
   Premium Personal Finance UI
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  /* --- Brand Palette --- */
  --v-primary: #5B4FE9;
  --v-primary-dark: #4338CA;
  --v-primary-light: #EEF0FF;
  --v-primary-grad: linear-gradient(135deg, #6C5CE7 0%, #5B4FE9 45%, #4338CA 100%);

  --v-income: #12B886;
  --v-income-light: #E3FCF3;
  --v-expense: #FF5C7A;
  --v-expense-light: #FFEBEF;
  --v-transfer: #3B82F6;
  --v-transfer-light: #EAF2FF;
  --v-warning: #F5A524;
  --v-warning-light: #FFF6E5;

  /* --- Neutrals (Light mode) --- */
  --v-bg: #F6F7FB;
  --v-surface: #FFFFFF;
  --v-surface-alt: #FBFBFE;
  --v-border: #ECEEF5;
  --v-text: #1A1D29;
  --v-text-muted: #767A8C;
  --v-text-faint: #A5A9BC;

  /* --- Shape / Elevation --- */
  --v-radius-sm: 12px;
  --v-radius-md: 18px;
  --v-radius-lg: 24px;
  --v-radius-pill: 999px;
  --v-shadow-sm: 0 2px 8px rgba(26, 29, 41, 0.04);
  --v-shadow-md: 0 8px 24px rgba(26, 29, 41, 0.06);
  --v-shadow-lg: 0 16px 40px rgba(26, 29, 41, 0.10);
  --v-shadow-primary: 0 12px 24px rgba(91, 79, 233, 0.25);

  --v-font-body: 'Plus Jakarta Sans', sans-serif;
  --v-font-display: 'Sora', sans-serif;

  --v-sidebar-w: 264px;
  --v-topbar-h: 76px;
  --v-bottomnav-h: 66px;
}

[data-theme="dark"] {
  --v-bg: #0F1015;
  --v-surface: #171923;
  --v-surface-alt: #1D202C;
  --v-border: #262A38;
  --v-text: #F1F2F6;
  --v-text-muted: #9497AC;
  --v-text-faint: #61647A;
  --v-primary-light: #211F3B;
  --v-income-light: #0E2A24;
  --v-expense-light: #331923;
  --v-transfer-light: #172236;
  --v-warning-light: #2E2412;
  --v-shadow-sm: 0 2px 8px rgba(0,0,0,0.20);
  --v-shadow-md: 0 8px 24px rgba(0,0,0,0.28);
  --v-shadow-lg: 0 16px 40px rgba(0,0,0,0.36);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  font-family: var(--v-font-body);
  background: var(--v-bg);
  color: var(--v-text);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6, .v-display {
  font-family: var(--v-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--v-text);
}

a { text-decoration: none; color: inherit; }
::selection { background: var(--v-primary-light); color: var(--v-primary-dark); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--v-border); border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }

/* =====================================================================
   LAYOUT SHELL
   ===================================================================== */
.v-app {
  display: flex;
  min-height: 100vh;
}

.v-main {
  flex: 1;
  margin-left: var(--v-sidebar-w);
  min-width: 0;
  padding-bottom: 40px;
  transition: margin-left 0.25s ease;
}

@media (max-width: 991.98px) {
  .v-main { margin-left: 0; padding-bottom: calc(var(--v-bottomnav-h) + 24px); }
}

.v-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 575.98px) {
  .v-container { padding: 0 16px; }
}

/* =====================================================================
   SIDEBAR (Desktop)
   ===================================================================== */
.v-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--v-sidebar-w);
  background: var(--v-surface);
  border-right: 1px solid var(--v-border);
  display: flex;
  flex-direction: column;
  padding: 26px 18px;
  z-index: 1030;
}
@media (max-width: 991.98px) { .v-sidebar { display: none; } }

.v-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 28px;
}
.v-brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--v-primary-grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--v-font-display); font-weight: 800; font-size: 18px;
  box-shadow: var(--v-shadow-primary);
}
.v-brand-text { font-family: var(--v-font-display); font-weight: 800; font-size: 20px; }

.v-nav-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v-text-faint);
  padding: 18px 12px 8px;
}

.v-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow-y: auto;
}

.v-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--v-radius-sm);
  color: var(--v-text-muted);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  transition: all 0.18s ease;
}
.v-nav-item i { font-size: 18px; width: 20px; text-align: center; }
.v-nav-item:hover { background: var(--v-surface-alt); color: var(--v-text); }
.v-nav-item.active {
  background: var(--v-primary-light);
  color: var(--v-primary-dark);
}
.v-nav-item.active i { color: var(--v-primary); }

.v-sidebar-footer {
  border-top: 1px solid var(--v-border);
  padding-top: 14px;
  margin-top: 10px;
}

.v-user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--v-radius-sm);
  cursor: pointer;
  transition: background 0.18s ease;
}
.v-user-chip:hover { background: var(--v-surface-alt); }
.v-avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--v-primary-grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.v-user-chip-name { font-weight: 700; font-size: 13.5px; line-height: 1.2; }
.v-user-chip-email { font-size: 11.5px; color: var(--v-text-faint); }

/* =====================================================================
   TOPBAR
   ===================================================================== */
.v-topbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: color-mix(in srgb, var(--v-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v-border);
  padding: 16px 0;
}
.v-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.v-topbar-greeting { font-size: 13px; color: var(--v-text-muted); font-weight: 600; }
.v-topbar-title { font-family: var(--v-font-display); font-size: 21px; font-weight: 700; margin: 0; }

.v-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--v-radius-sm);
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--v-text-muted);
  font-size: 17px;
  position: relative;
  transition: all 0.18s ease;
}
.v-icon-btn:hover { background: var(--v-surface-alt); color: var(--v-text); }


/* =====================================================================
   MODALS
   ===================================================================== */
.modal-content {
  box-shadow: var(--v-shadow-lg);
}
.modal-header .btn-close {
  background-color: var(--v-surface-alt);
  border-radius: 50%;
  padding: 10px;
  opacity: 0.6;
}
.modal-dialog-scrollable {
  max-height: calc(100vh - 3.5rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 3.5rem);
  display: flex;
  flex-direction: column;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0.5rem;
  }
  .modal-dialog-scrollable {
    max-height: calc(100vh - 3rem);
  }
  .modal-dialog-scrollable .modal-body {
    max-height: calc(100vh - 200px);
  }
}


/* =====================================================================
   CARDS
   ===================================================================== */
.v-card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  box-shadow: var(--v-shadow-sm);
  padding: 22px;
  overflow: hidden;
}

.v-card-title {
  font-family: var(--v-font-display);
  font-size: 16px;
  font-weight: 700;
}
.v-card-subtitle { font-size: 12.5px; color: var(--v-text-faint); }

/* Balance Hero Card */
.v-balance-card {
  background: var(--v-primary-grad);
  border-radius: var(--v-radius-lg);
  padding: 26px 26px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--v-shadow-primary);
}
.v-balance-card::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -100px; right: -60px;
}
.v-balance-card::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -80px; left: -40px;
}
.v-balance-label { font-size: 13px; opacity: 0.85; font-weight: 600; }
.v-balance-amount { font-family: var(--v-font-display); font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0 18px; position: relative; overflow: hidden; text-overflow: ellipsis; }
.v-balance-row { display: flex; gap: 22px; position: relative; z-index: 1; flex-wrap: wrap; }
.v-balance-chip { display: flex; align-items: center; gap: 8px; }
.v-balance-chip .v-chip-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.v-balance-chip-label { font-size: 11.5px; opacity: 0.8; }
.v-balance-chip-value { font-weight: 700; font-size: 14.5px; }

.v-stat-card { display: flex; align-items: center; gap: 14px; padding: 16px; overflow: hidden; }
.v-stat-card > div:last-child { min-width: 0; overflow: hidden; flex: 1; }
.v-stat-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.v-stat-value { font-family: var(--v-font-display); font-size: 19px; font-weight: 800; line-height: 1.2; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v-stat-label { font-size: 12.5px; color: var(--v-text-faint); font-weight: 600; line-height: 1.2; }

@media (max-width: 767.98px) {
  .v-balance-card { padding: 18px 14px 16px !important; }
  .v-balance-amount { font-size: clamp(18px, 5.5vw, 26px) !important; }
  .v-balance-chip-value { font-size: 12px !important; }
  .v-balance-chip-label { font-size: 10px !important; }
  .v-balance-row { gap: 12px !important; }
  .v-card { padding: 12px !important; }
  .v-card-title { font-size: 13px !important; }
  .v-stat-card.v-card,
  .v-card.v-stat-card { 
    flex-direction: column !important; 
    align-items: flex-start !important; 
    gap: 6px !important; 
    padding: 10px !important; 
  }
  .v-stat-card .v-stat-icon,
  .v-card.v-stat-card .v-stat-icon { 
    width: 30px !important; height: 30px !important; 
    font-size: 14px !important; border-radius: 8px !important; 
  }
  .v-stat-card .v-stat-value,
  .v-card.v-stat-card .v-stat-value { 
    font-size: clamp(11px, 3.2vw, 13px) !important; 
    white-space: nowrap !important;
    overflow: hidden !important; 
    text-overflow: ellipsis !important; 
    max-width: 100% !important;
    display: block !important;
  }
  .v-stat-card .v-stat-label,
  .v-card.v-stat-card .v-stat-label { 
    font-size: 10px !important; 
  }
}
.v-wallet-card {
  border-radius: var(--v-radius-md);
  padding: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--v-shadow-md);
}
.v-wallet-card::after {
  content: '';
  position: absolute;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  top: -50px; right: -30px;
}
.v-wallet-type { font-size: 11px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.v-wallet-name { font-family: var(--v-font-display); font-weight: 700; font-size: 16px; margin-top: 2px; }
.v-wallet-balance { font-family: var(--v-font-display); font-size: 22px; font-weight: 800; position: relative; z-index: 1; }

/* Transaction row */
.v-tx-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 8px;
  border-radius: var(--v-radius-sm);
  transition: background 0.15s ease;
}
.v-tx-row:hover { background: var(--v-surface-alt); }
.v-tx-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.v-tx-title { font-weight: 700; font-size: 14px; }
.v-tx-sub { font-size: 12px; color: var(--v-text-faint); }
.v-tx-amount { font-weight: 800; font-size: 14.5px; font-family: var(--v-font-display); white-space: nowrap; }
.v-tx-amount.income { color: var(--v-income); }
.v-tx-amount.expense { color: var(--v-expense); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.v-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--v-radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}
.v-btn-primary { background: var(--v-primary-grad); color: #fff; box-shadow: var(--v-shadow-primary); }
.v-btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); color: #fff; }
.v-btn-outline { background: transparent; border: 1.5px solid var(--v-border); color: var(--v-text); }
.v-btn-outline:hover { background: var(--v-surface-alt); }
.v-btn-soft { background: var(--v-primary-light); color: var(--v-primary-dark); }
.v-btn-block { width: 100%; }
.v-btn-sm { padding: 8px 14px; font-size: 13px; }

/* =====================================================================
   FORMS
   ===================================================================== */
.v-form-label { font-size: 13px; font-weight: 700; color: var(--v-text); margin-bottom: 6px; display: block; }
.v-form-control {
  width: 100%;
  background: var(--v-surface-alt);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--v-text);
  font-family: var(--v-font-body);
  transition: all 0.18s ease;
}
.v-form-control:focus {
  outline: none;
  border-color: var(--v-primary);
  background: var(--v-surface);
  box-shadow: 0 0 0 4px var(--v-primary-light);
}
.v-input-group { position: relative; }
.v-input-group .v-form-control { padding-left: 42px; }
.v-input-group .v-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--v-text-faint); font-size: 16px;
}
.v-input-group .v-input-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--v-text-faint); cursor: pointer; background: none; border: none; font-size: 16px;
}

/* =====================================================================
   AUTH PAGES
   ===================================================================== */
.v-auth-wrap {
  min-height: 100vh;
  display: flex;
  background: var(--v-bg);
}
.v-auth-side {
  flex: 1.1;
  background: var(--v-primary-grad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.v-auth-side::before {
  content: '';
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,0.07); top: -140px; right: -120px;
}
.v-auth-side::after {
  content: '';
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.06); bottom: -100px; left: -60px;
}
.v-auth-side-content { position: relative; z-index: 1; max-width: 440px; }
.v-auth-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.v-auth-form-inner { width: 100%; max-width: 400px; }
@media (max-width: 991.98px) { .v-auth-side { display: none; } }

.v-auth-mock-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: var(--v-radius-lg);
  padding: 22px;
  margin-top: 34px;
}

/* =====================================================================
   MOBILE: BOTTOM NAVIGATION + FAB
   ===================================================================== */
.v-bottom-nav {
  display: none;
}
@media (max-width: 991.98px) {
  .v-bottom-nav { display: flex; }
}
@media (max-width: 991.98px) {
  .v-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--v-bottomnav-h);
    background: var(--v-surface);
    border-top: 1px solid var(--v-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 1030;
    touch-action: manipulation;
    align-items: center;
    justify-content: space-around;
    padding: 0 6px;
  }
}
.v-bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--v-text-faint);
  font-size: 10.5px;
  font-weight: 700;
  flex: 1;
  padding: 8px 0;
}

/* Mobile 'Lainnya' overlay */
.v-mobile-menu {
  position: fixed; inset: 0; background: rgba(10,12,18,0.5); display: none; align-items: center; justify-content: center; z-index: 2000;
}
.v-mobile-menu.open { display: flex; }
.v-mobile-menu-inner {
  width: 92%; max-width: 420px; background: var(--v-surface); border-radius: 14px; padding: 18px; box-shadow: var(--v-shadow-lg); position: relative;
}
.v-mobile-menu-close { position: absolute; right: 12px; top: 12px; border: none; background: transparent; font-size:18px; cursor:pointer; color:var(--v-text-muted); }
.v-mobile-menu-nav { display:flex; flex-direction:column; gap:8px; margin-top:10px; max-height:70vh; overflow:auto; }
.v-mobile-divider { font-size:11px; font-weight:700; color:var(--v-text-faint); padding:8px 0 4px; }
.v-mobile-menu-nav .v-nav-item { padding:10px; border-radius:10px; }

@media (min-width: 992px) {
  .v-mobile-menu { display:none !important; }
}
.v-bn-item i { font-size: 21px; }
.v-bn-item.active { color: var(--v-primary); }

.v-fab {
  position: fixed;
  bottom: calc(var(--v-bottomnav-h) + 16px);
  right: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--v-primary-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px;
  box-shadow: var(--v-shadow-primary);
  z-index: 1050;
  border: none;
  transition: transform 0.18s ease;
}
.v-fab:active { transform: scale(0.92); }
@media (min-width: 992px) { .v-fab { display: none; } }

/* =====================================================================
   MOBILE TOPBAR
   ===================================================================== */
.v-mobile-topbar {
  display: none;
}
@media (max-width: 991.98px) {
  .v-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    position: sticky; top: 0; z-index: 1020;
    background: color-mix(in srgb, var(--v-bg) 90%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--v-border);
  }
}

/* =====================================================================
   SKELETON LOADING
   ===================================================================== */
.v-skeleton {
  background: linear-gradient(90deg, var(--v-border) 25%, var(--v-surface-alt) 37%, var(--v-border) 63%);
  background-size: 400% 100%;
  animation: v-skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--v-radius-sm);
}
@keyframes v-skeleton-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* =====================================================================
   MISC / UTILITIES
   ===================================================================== */
.v-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: var(--v-radius-pill);
  font-size: 11.5px;
  font-weight: 700;
}
.v-badge.success { background: var(--v-income-light); color: var(--v-income); }
.v-badge.danger { background: var(--v-expense-light); color: var(--v-expense); }
.v-badge.warning { background: var(--v-warning-light); color: var(--v-warning); }
.v-badge.info { background: var(--v-transfer-light); color: var(--v-transfer); }

.v-progress {
  height: 8px;
  background: var(--v-border);
  border-radius: var(--v-radius-pill);
  overflow: hidden;
}
.v-progress-bar {
  height: 100%;
  background: var(--v-primary-grad);
  border-radius: var(--v-radius-pill);
  transition: width 0.5s ease;
}

.v-empty-state { text-align: center; padding: 50px 20px; color: var(--v-text-faint); }
.v-empty-state i { font-size: 44px; margin-bottom: 12px; display: block; }

.v-fade-in { animation: v-fadeIn 0.35s ease both; }
@keyframes v-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Theme toggle switch */
.v-theme-toggle {
  width: 44px; height: 26px; border-radius: 999px;
  background: var(--v-border);
  position: relative;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.v-theme-toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff;
  transition: transform 0.22s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
[data-theme="dark"] .v-theme-toggle-knob { transform: translateX(18px); background: var(--v-primary); color: #fff; }

/* =====================================================================
   NOTIFICATION DROPDOWN
   ===================================================================== */
.v-notif-wrapper { position: relative; }
.v-notif-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  padding: 0;
}
.v-notif-dropdown.show { display: block; }
.v-notif-header {
  padding: 14px 16px 10px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--v-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v-notif-header .v-notif-count {
  background: var(--v-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.v-notif-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--v-border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.v-notif-item:hover { background: var(--v-bg-light, #f8f9fa); }
.v-notif-item:last-child { border-bottom: none; }
.v-notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.v-notif-icon.danger { background: rgba(255,92,122,0.12); color: #FF5C7A; }
.v-notif-icon.warning { background: rgba(255,159,67,0.12); color: #FF9F43; }
.v-notif-icon.info { background: rgba(91,79,233,0.12); color: #5B4FE9; }
.v-notif-icon.success { background: rgba(18,184,134,0.12); color: #12B886; }
.v-notif-body { flex: 1; min-width: 0; }
.v-notif-title { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.v-notif-desc { font-size: 11.5px; color: var(--v-text-faint); line-height: 1.4; }
.v-notif-time { font-size: 10px; color: var(--v-text-faint); margin-top: 3px; }
.v-notif-empty {
  padding: 30px 16px;
  text-align: center;
  color: var(--v-text-faint);
  font-size: 13px;
}
.v-dot { display: none; }
.v-dot.active {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 10px;
  background: #FF5C7A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--v-surface);
  box-sizing: content-box;
}

@media (max-width: 767.98px) {
  .v-notif-dropdown {
    width: calc(100vw - 24px);
    right: -8px;
    max-height: 360px;
  }
}
