/* =====================================================
   BESTIEDEV DASHBOARD - DESIGN SYSTEM
   ===================================================== */
:root {
    --bg: #0a0a0f;
    --bg-elev: #14141d;
    --bg-elev-2: #1c1c28;
    --bg-card: #181822;
    --bg-hover: #232333;
    --border: #2a2a3a;
    --border-light: #353548;
    --text: #f4f4f9;
    --text-dim: #a8a8c0;
    --text-muted: #6b6b85;
    --brand: #7c3aed;
    --brand-2: #a855f7;
    --brand-dim: #5b21b6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --pink: #ec4899;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
    --shadow: 0 4px 16px rgba(0,0,0,.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.5);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --sidebar-w: 260px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-elev-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-hover); }

/* ===========================
   LAYOUT
   =========================== */
.app-layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    min-height: 100vh;
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar {
    background: var(--bg-elev);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: transform var(--transition);
}
.sidebar-brand {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.sidebar-brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, .4);
}
.sidebar-brand-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.sidebar-brand-sub {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nav-section {
    padding: 8px;
}
.nav-section-title {
    padding: 12px 14px 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    font-weight: 600;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 2px;
    position: relative;
}
.nav-link:hover { background: var(--bg-hover); color: var(--text); }
.nav-link.active {
    background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(168,85,247,.08));
    color: white;
    font-weight: 600;
}
.nav-link.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--brand);
    border-radius: 0 3px 3px 0;
}
.nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-link .badge {
    margin-left: auto;
    background: var(--brand);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.sidebar-footer {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid var(--border);
}
.user-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    cursor: pointer;
    transition: background var(--transition);
}
.user-chip:hover { background: var(--bg-hover); }
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    object-fit: cover;
}
.user-info { min-width: 0; flex: 1; }
.user-info-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-info-role { font-size: 11px; color: var(--text-dim); text-transform: capitalize; }

/* ===========================
   MAIN AREA
   =========================== */
.main {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.topbar {
    height: 64px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    background: rgba(20, 20, 29, 0.7);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 20;
}
.topbar-title { font-size: 18px; font-weight: 700; }
.topbar-spacer { flex: 1; }
.topbar-search {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    color: var(--text);
    width: 280px;
    max-width: 100%;
    transition: border-color var(--transition);
}
.topbar-search:focus { outline: none; border-color: var(--brand); }
.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.icon-btn:hover { background: var(--bg-hover); border-color: var(--border-light); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .dot { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; background: var(--danger); border-radius: 50%; }
.mobile-burger { display: none; }

.content { padding: 24px; min-height: calc(100vh - 64px); }
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.page-title { font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.page-subtitle { color: var(--text-dim); font-size: 13px; margin-top: 4px; }

/* ===========================
   COMPONENTS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-card);
    color: var(--text);
}
.btn:hover { background: var(--bg-hover); border-color: var(--border-light); }
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: var(--brand);
    box-shadow: 0 4px 14px rgba(124, 58, 237, .35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,.5); }
.btn-success { background: var(--success); border-color: var(--success); }
.btn-danger  { background: var(--danger);  border-color: var(--danger); }
.btn-ghost   { background: transparent; border-color: var(--border); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-icon { padding: 8px; }
.btn svg { width: 16px; height: 16px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-dim);
}
.card-title-strong { color: var(--text); font-size: 16px; text-transform: none; letter-spacing: 0; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(124,58,237,.15), transparent 70%);
    pointer-events: none;
}
.stat-label {
    color: var(--text-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 8px;
}
.stat-value { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.stat-trend { font-size: 12px; margin-top: 6px; color: var(--text-dim); }
.stat-trend.up   { color: var(--success); }
.stat-trend.down { color: var(--danger); }
.stat-icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(124, 58, 237, .15);
    display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 20px; height: 20px; color: var(--brand-2); }

.grid {
    display: grid;
    gap: 16px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}
th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-dim);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elev);
    white-space: nowrap;
}
td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-hover); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--bg-elev-2);
    color: var(--text-dim);
}
.badge-success { background: rgba(16,185,129,.18); color: var(--success); }
.badge-warning { background: rgba(245,158,11,.18); color: var(--warning); }
.badge-danger  { background: rgba(239,68,68,.18);  color: var(--danger); }
.badge-info    { background: rgba(59,130,246,.18); color: var(--info); }
.badge-brand   { background: rgba(124,58,237,.18); color: var(--brand-2); }
.badge-pink    { background: rgba(236,72,153,.18); color: var(--pink); }

.dot-status {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}
.dot-status.green { background: var(--success); box-shadow: 0 0 8px var(--success); }
.dot-status.amber { background: var(--warning); }
.dot-status.red   { background: var(--danger); }

/* Form */
.form-row { display: grid; gap: 12px; margin-bottom: 12px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
.form-textarea { resize: vertical; min-height: 90px; font-family: inherit; }

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(.9);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-lg { max-width: 880px; }
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-title { font-size: 18px; font-weight: 700; }
.modal-body { padding: 24px; }
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--bg-elev-2);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--brand);
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 280px;
    font-size: 14px;
    box-shadow: var(--shadow);
    animation: slideIn .3s ease;
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Empty state */
.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-dim);
}
.empty-state svg { width: 48px; height: 48px; opacity: .4; margin-bottom: 12px; }

/* Loader */
.spinner {
    width: 20px; height: 20px;
    border: 2px solid var(--bg-hover);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-loader { display: flex; align-items: center; justify-content: center; padding: 60px; }

/* Kanban */
.kanban {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 1fr));
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.kanban-col {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 260px;
}
.kanban-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kanban-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: grab;
    transition: all var(--transition);
    position: relative;
}
.kanban-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.kanban-card-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.kanban-card-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-dim); flex-wrap: wrap; }

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.calendar-cell {
    background: var(--bg-card);
    min-height: 100px;
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: background var(--transition);
}
.calendar-cell:hover { background: var(--bg-hover); }
.calendar-cell.other-month { opacity: .35; }
.calendar-cell.today { background: rgba(124,58,237,.1); border: 1px solid var(--brand); }
.calendar-cell-day { font-weight: 700; margin-bottom: 4px; }
.calendar-event {
    background: var(--brand);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.calendar-header { background: var(--bg-elev); padding: 10px; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); font-weight: 700; }

/* Notes (private) */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.note-card {
    border-radius: var(--radius);
    padding: 16px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform var(--transition);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,.1);
}
.note-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.note-card-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.note-card-content { font-size: 13px; flex: 1; overflow: hidden; opacity: .85; }
.note-card-footer { font-size: 11px; opacity: .6; margin-top: 8px; }

/* Chat */
.chat-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: calc(100vh - 200px);
    min-height: 500px;
}
.chat-sidebar { border-right: 1px solid var(--border); overflow-y: auto; }
.chat-user-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition);
}
.chat-user-item:hover { background: var(--bg-hover); }
.chat-user-item.active { background: var(--bg-hover); border-left: 3px solid var(--brand); }
.chat-window { display: flex; flex-direction: column; min-width: 0; }
.chat-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 70%; padding: 10px 14px; border-radius: 14px; font-size: 14px; word-break: break-word; }
.chat-msg.mine { background: var(--brand); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.theirs { background: var(--bg-elev-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg-time { font-size: 10px; opacity: .6; margin-top: 4px; }
.chat-input-bar { padding: 14px; border-top: 1px solid var(--border); display: flex; gap: 10px; }

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at 20% 30%, rgba(124,58,237,.15), transparent 60%), radial-gradient(circle at 80% 70%, rgba(168,85,247,.1), transparent 60%), var(--bg);
}
.login-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.login-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 24px;
    margin: 0 auto 18px;
    box-shadow: 0 8px 32px rgba(124,58,237,.5);
}
.login-title { text-align: center; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.login-sub { text-align: center; color: var(--text-dim); font-size: 13px; margin-bottom: 28px; }

/* Misc */
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-8 { display: flex; align-items: center; gap: 8px; }
.flex-gap-12 { display: flex; align-items: center; gap: 12px; }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-right { text-align: right; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.hidden { display: none !important; }

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 900px) {
    .app-layout { grid-template-columns: 1fr; }
    .sidebar {
        position: fixed;
        z-index: 50;
        transform: translateX(-100%);
        width: 280px;
        box-shadow: var(--shadow-lg);
    }
    .sidebar.open { transform: translateX(0); }
    .mobile-burger { display: inline-flex; }
    .topbar-search { width: 160px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
    .chat-layout { grid-template-columns: 1fr; height: calc(100vh - 140px); }
    .chat-sidebar { display: none; }
    .chat-sidebar.show { display: block; position: absolute; inset: 0; background: var(--bg-card); z-index: 5; }
}
@media (max-width: 500px) {
    .stat-grid { grid-template-columns: 1fr; }
    .content { padding: 16px; }
    .topbar-search { display: none; }
}

/* === Finanza personale === */
.pf-accounts-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.pf-account-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.pf-account-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pf-account-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.pf-account-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.pf-account-inst {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.pf-account-balance {
    font-size: 22px;
    font-weight: 800;
    margin-top: 8px;
}
.pf-account-detail:hover { transform: translateY(-2px); transition: transform .15s; }
.pf-budget-card:hover { transform: translateY(-2px); transition: transform .15s; }

