/* =============================================
   SemDívidas — Obsidian Finance Design System
   Aesthetic: Dark Luxury + Industrial Utility
   Fonts: Space Grotesk (display) + DM Sans (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root,
[data-theme="light"] {
    /* Clean Light System */
    --bg-deep: #f0f2f5;
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-elevated: #f1f5f9;
    --bg-input: #f8fafc;

    /* Emerald Accent */
    --accent: #00b386;
    --accent-bright: #00d09c;
    --accent-dim: #009973;
    --accent-glow: rgba(0, 179, 134, 0.12);
    --accent-glow-strong: rgba(0, 179, 134, 0.25);

    /* Semantic Colors */
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #2563eb;
    --ruby: #e11d48;
    --sapphire: #4f46e5;
    --amber: #d97706;
    --violet: #7c3aed;

    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    /* Border */
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-accent: rgba(0, 179, 134, 0.35);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-elevated: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 179, 134, 0.08);

    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-collapsed: 72px;
    --sidebar-bg: #1e293b;
    --topbar-height: 64px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    --bg-deep: #050810;
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #222839;
    --bg-elevated: #252b3d;
    --bg-input: #151a28;

    --accent: #00d09c;
    --accent-bright: #00f5b8;
    --accent-dim: #00a67d;
    --accent-glow: rgba(0, 208, 156, 0.15);
    --accent-glow-strong: rgba(0, 208, 156, 0.3);

    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --ruby: #f43f5e;
    --sapphire: #6366f1;
    --amber: #f59e0b;
    --violet: #a855f7;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #0a0e17;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 208, 156, 0.3);

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 208, 156, 0.1);

    --sidebar-bg: #0a0e17;
}

/* ============================================= 
   RESET & BASE 
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-bright);
}

::selection {
    background: var(--accent);
    color: var(--text-inverse);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dim);
}

/* ============================================= 
   SIDEBAR NAVIGATION 
   ============================================= */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform var(--transition-slow);
    color: #f1f5f9;
}

.sidebar-brand {
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-inverse);
    flex-shrink: 0;
}

.sidebar-brand .brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #f1f5f9;
}

.sidebar-brand .brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-nav {
    flex: 1;
    padding: var(--space-md) var(--space-sm);
    overflow-y: auto;
}

.nav-section-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    padding: var(--space-lg) var(--space-md) var(--space-sm);
    font-weight: 600;
}

.nav-item {
    margin-bottom: 2px;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 11px var(--space-md);
    border-radius: var(--radius-md);
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
}

.sidebar .nav-link:hover {
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar .nav-link.active {
    color: var(--accent);
    background: rgba(0, 208, 156, 0.15);
}

.sidebar .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

.nav-link i {
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
}

.sidebar-footer {
    padding: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.sidebar-user:hover {
    background: var(--bg-card);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--sapphire), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.user-info .user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
}

.user-info .user-email {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* ============================================= 
   MAIN CONTENT 
   ============================================= */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: var(--topbar-height);
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.topbar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.topbar-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--accent-glow);
    color: var(--accent);
    border-color: var(--accent);
}

/* AI Nav Link Glow */
.sidebar .nav-link.nav-ai {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.sidebar .nav-link.nav-ai i {
    color: #a855f7;
}

.sidebar .nav-link.nav-ai:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.25));
    color: #e2e8f0;
}

.sidebar .nav-link.nav-ai.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
    color: #a855f7;
}

.content-area {
    flex: 1;
    padding: var(--space-xl);
    max-width: 1400px;
    width: 100%;
}

/* ============================================= 
   CARDS 
   ============================================= */
.card-obsidian {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.card-obsidian:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.card-glass {
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

/* Stat Cards */
.stat-card {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.stat-card .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-card.emerald {
    background: var(--bg-card);
}

.stat-card.emerald::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

.stat-card.emerald .stat-icon {
    background: var(--accent-glow);
    color: var(--accent);
}

.stat-card.emerald .stat-value {
    color: var(--accent);
}

.stat-card.ruby {
    background: var(--bg-card);
}

.stat-card.ruby::before {
    background: linear-gradient(90deg, var(--ruby), #fb7185);
}

.stat-card.ruby .stat-icon {
    background: rgba(244, 63, 94, 0.15);
    color: var(--ruby);
}

.stat-card.ruby .stat-value {
    color: var(--ruby);
}

.stat-card.sapphire {
    background: var(--bg-card);
}

.stat-card.sapphire::before {
    background: linear-gradient(90deg, var(--sapphire), #818cf8);
}

.stat-card.sapphire .stat-icon {
    background: rgba(99, 102, 241, 0.15);
    color: var(--sapphire);
}

.stat-card.sapphire .stat-value {
    color: var(--sapphire);
}

.stat-card.amber {
    background: var(--bg-card);
}

.stat-card.amber::before {
    background: linear-gradient(90deg, var(--amber), #fbbf24);
}

.stat-card.amber .stat-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber);
}

.stat-card.amber .stat-value {
    color: var(--amber);
}

.stat-card.violet {
    background: var(--bg-card);
}

.stat-card.violet::before {
    background: linear-gradient(90deg, var(--violet), #c084fc);
}

.stat-card.violet .stat-icon {
    background: rgba(168, 85, 247, 0.15);
    color: var(--violet);
}

.stat-card.violet .stat-value {
    color: var(--violet);
}

.progress-fill.success {
    background: linear-gradient(90deg, var(--success), #4ade80) !important;
}

.progress-fill.danger {
    background: linear-gradient(90deg, var(--danger), #fb7185) !important;
}

.progress-fill.warning {
    background: linear-gradient(90deg, var(--warning), #fbbf24) !important;
}

/* Credit Card Component */
.credit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.credit-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

/* Dream Card Padding Fix */
.dream-card {
    padding: var(--space-lg);
}

.dream-card.completed {
    opacity: 0.7;
    border-color: var(--success);
}

/* ============================================= 
   PROGRESS BARS 
   ============================================= */
.progress-obsidian {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-obsidian .progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.progress-obsidian .progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    border-radius: 4px;
}

.progress-obsidian.danger .progress-fill {
    background: linear-gradient(90deg, var(--danger), #fb7185);
}

.progress-obsidian.warning .progress-fill {
    background: linear-gradient(90deg, var(--amber), #fbbf24);
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 80px;
    height: 80px;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.circular-progress .progress-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================= 
   BUTTONS 
   ============================================= */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    color: var(--text-inverse);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 208, 156, 0.3);
    color: var(--text-inverse);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* ============================================= 
   MODALS 
   ============================================= */
.modal-obsidian .modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
}

.modal-obsidian .modal-header {
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-lg);
}

.modal-obsidian .modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-obsidian .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-obsidian .modal-body {
    padding: var(--space-lg);
}

.modal-obsidian .modal-footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-md) var(--space-lg);
}

/* ============================================= 
   FORMS 
   ============================================= */
.form-control-obsidian {
    background: var(--bg-input);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 10px var(--space-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form-control-obsidian:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-secondary);
}

.form-control-obsidian::placeholder {
    color: var(--text-muted);
}

.form-label-obsidian {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-xs);
}

.form-select-obsidian {
    background: var(--bg-input);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 10px var(--space-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-select-obsidian:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============================================= 
   TABLES 
   ============================================= */
.table-obsidian {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-obsidian thead th {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    font-weight: 600;
    text-align: left;
}

.table-obsidian tbody td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.table-obsidian tbody tr {
    transition: background var(--transition-fast);
}

.table-obsidian tbody tr:hover {
    background: var(--bg-card-hover);
}

/* ============================================= 
   TAGS & BADGES 
   ============================================= */
.badge-obsidian {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

.badge-accent {
    background: var(--accent-glow);
    color: var(--accent);
}

/* ============================================= 
   DEBT CARDS (Special) 
   ============================================= */
.debt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.debt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.debt-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.debt-card.tipo-manual::before {
    background: linear-gradient(90deg, var(--info), #60a5fa);
}

.debt-card.tipo-cartao::before {
    background: linear-gradient(90deg, var(--violet), #c084fc);
}

.debt-card.tipo-emprestimo::before {
    background: linear-gradient(90deg, var(--amber), #fbbf24);
}

.debt-card .debt-type-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.debt-card .debt-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.debt-card .debt-remaining {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================= 
   DREAM CARDS 
   ============================================= */
.dream-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.dream-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--border-accent);
}

.dream-card .dream-image {
    height: 140px;
    background: linear-gradient(135deg, var(--sapphire), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.dream-card .dream-body {
    padding: var(--space-lg);
}

.dream-card .dream-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

/* ============================================= 
   CREDIT CARD VISUAL 
   ============================================= */
.credit-card-visual {
    width: 320px;
    height: 190px;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.credit-card-visual.visa {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.credit-card-visual.mastercard {
    background: linear-gradient(135deg, #2d1b69, #11998e);
}

.credit-card-visual.elo {
    background: linear-gradient(135deg, #0f0c29, #302b63);
}

.credit-card-visual.default {
    background: linear-gradient(135deg, var(--sapphire), var(--violet));
}

.credit-card-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* ============================================= 
   FINANCIAL SCORE 
   ============================================= */
.score-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.score-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-ring .score-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-ring .score-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.score-ring .score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================= 
   CHART CONTAINERS 
   ============================================= */
.chart-container {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.chart-container .chart-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.chart-container canvas {
    max-height: 300px;
}

/* ============================================= 
   EMPTY STATE 
   ============================================= */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.empty-state p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto var(--space-lg);
}

/* ============================================= 
   ANIMATIONS 
   ============================================= */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--accent-glow-strong);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--accent-glow);
    }
}

.animate-in {
    animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.animate-in:nth-child(1) {
    animation-delay: 0s;
}

.animate-in:nth-child(2) {
    animation-delay: 0.08s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.16s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.24s;
}

.animate-in:nth-child(5) {
    animation-delay: 0.32s;
}

.animate-in:nth-child(6) {
    animation-delay: 0.4s;
}

/* ============================================= 
   LANDING PAGE 
   ============================================= */
.landing-body {
    background: var(--bg-deep);
    overflow-x: hidden;
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
}

.landing-nav.scrolled {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px var(--space-xl) 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 208, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero-title .text-glow {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(0, 208, 156, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-cta .btn-accent {
    padding: 14px 36px;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(0, 208, 156, 0.08);
    overflow: hidden;
}

/* Feature Section */
.features-section {
    padding: 100px var(--space-xl);
    position: relative;
}

.section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.feature-card .feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-card .feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Band */
.stats-band {
    padding: 60px var(--space-xl);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-band .stat-item {
    text-align: center;
}

.stats-band .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stats-band .stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* CTA Section */
.cta-section {
    padding: 100px var(--space-xl);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 208, 156, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer Landing */
.landing-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================= 
   LOGIN / REGISTER PAGE 
   ============================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 208, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-card .auth-brand {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.auth-card .auth-brand .brand-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-inverse);
    margin: 0 auto var(--space-md);
}

/* ============================================= 
   UTILITY 
   ============================================= */
.text-accent {
    color: var(--accent) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.bg-accent-glow {
    background: var(--accent-glow);
}

.bg-card {
    background: var(--bg-card);
}

.gap-grid {
    gap: var(--space-lg);
}

.mb-section {
    margin-bottom: var(--space-2xl);
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* ============================================= 
   RESPONSIVE 
   ============================================= */
@media (max-width: 1200px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .btn-mobile-menu {
        display: block;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .content-area {
        padding: var(--space-md);
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-card .stat-value {
        font-size: 1.3rem;
    }

    .credit-card-visual {
        width: 100%;
        max-width: 320px;
    }
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.page-header h1 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.page-header .page-actions {
    display: flex;
    gap: var(--space-sm);
}

/* Month Selector */
.month-selector {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-md);
}

.month-selector .month-nav {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.month-selector .month-nav:hover {
    color: var(--accent);
    background: var(--accent-glow);
}

.month-selector .month-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    min-width: 160px;
    text-align: center;
}

/* Alert boxes */
.alert-obsidian {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid;
    font-size: 0.88rem;
}

.alert-obsidian.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-obsidian.danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-obsidian.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

/* Toast notification */
.toast-container {
    position: fixed;
    top: 80px;
    right: var(--space-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast-obsidian {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-elevated);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 300px;
    animation: fadeSlideUp 0.3s ease;
    font-size: 0.88rem;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #00d09c);
}

.profile-avatar-lg {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.profile-hero-info {
    flex: 1;
}

.profile-hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.profile-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.profile-hero-meta span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: border-color 0.2s;
}

.profile-card:hover {
    border-color: var(--border-medium);
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.profile-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2px;
}

.profile-card-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.profile-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-input-wrap {
    position: relative;
}

.pf-input-wrap>i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.pf-input-wrap .form-control-obsidian {
    width: 100%;
    padding-left: 40px;
}

.pf-readonly {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pf-readonly i {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.strength-label {
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Info Grid */
.pf-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pf-info-item {
    padding: 14px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.pf-info-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pf-info-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-hero {
        flex-direction: column;
        text-align: center;
    }

    .profile-hero-meta {
        justify-content: center;
    }

    .pf-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ADMIN PANEL
   ============================================= */
.admin-hero {
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d09c, #6366f1, #8b5cf6);
}

.admin-hero-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-hero-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #00d09c, #00b386);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.admin-hero h1 {
    font-size: 1.4rem;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.admin-hero p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Admin Search */
.admin-search-wrapper {
    position: relative;
}

.admin-search-wrapper>i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.admin-search-wrapper .form-control-obsidian {
    min-width: 200px;
    padding-left: 32px;
}

/* Status Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-status.active {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
}

.badge-status.inactive {
    background: rgba(100, 116, 139, 0.12);
    color: var(--text-muted);
}

.badge-admin {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0, 208, 156, 0.12);
    color: #00d09c;
    margin-left: 6px;
    vertical-align: middle;
}

/* Admin nav link */
.sidebar .nav-link.nav-admin {
    background: linear-gradient(135deg, rgba(0, 179, 134, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(0, 179, 134, 0.15);
}

.sidebar .nav-link.nav-admin i {
    color: #00d09c;
}

.sidebar .nav-link.nav-admin:hover {
    background: linear-gradient(135deg, rgba(0, 179, 134, 0.2), rgba(99, 102, 241, 0.2));
    color: #e2e8f0;
}

.sidebar .nav-link.nav-admin.active {
    background: linear-gradient(135deg, rgba(0, 179, 134, 0.25), rgba(99, 102, 241, 0.25));
    color: #00d09c;
}

/* User Avatar Small */
.user-avatar-sm {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
}

/* Action Icon Button */
.btn-icon-action {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.88rem;
}

.btn-icon-action:hover {
    background: rgba(0, 208, 156, 0.08);
    color: #00d09c;
    border-color: #00d09c;
}

/* Table responsive */
.table-responsive {
    overflow-x: auto;
}

@media (max-width: 900px) {
    .admin-hero-content {
        flex-direction: column;
        text-align: center;
    }
}
