@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* NexAsset Premium Design System Tokens */
:root {
    /* Fonts & Typography Hierarchy */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Premium Light Theme (Stripe / Notion / Linear style) */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-active: #1e40af;
    --primary-light: #eff6ff;
    --primary-border: #bfdbfe;
    
    --sidebar-bg: #ffffff;
    --sidebar-text: #0f172a;
    --sidebar-text-muted: #64748b;
    --sidebar-active-bg: #eff6ff;
    --sidebar-border: rgba(15, 23, 42, 0.06);
    
    --bg-app: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f1f5f9;
    --border-color: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #ecfdf5;
    --success-border: #a7f3d0;
    
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --warning-border: #fde68a;
    
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --danger-border: #fca5a5;
    
    --info: #0ea5e9;
    --info-light: #f0f9ff;
    --info-border: #bae6fd;

    /* 8-Point Spacing System */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;

    /* Radius Tokens */
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-16: 16px;
    --radius-24: 24px;

    /* Shadows: Soft & Elegant Depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    
    /* Layout Configurations */
    --sidebar-width: 260px;
    --sidebar-width-collapsed: 72px;
    --topbar-height: 64px;
    
    /* Fine-tuned Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Overrides (Linear / Vercel Dark Style) */
[data-theme="dark"] {
    --primary: #3b82f6;
    --primary-hover: #60a5fa;
    --primary-active: #2563eb;
    --primary-light: rgba(59, 130, 246, 0.1);
    --primary-border: rgba(59, 130, 246, 0.25);
    
    --sidebar-bg: #080c14;
    --sidebar-text: #f4f4f5;
    --sidebar-text-muted: #71717a;
    --sidebar-active-bg: #1c2433;
    --sidebar-border: rgba(255, 255, 255, 0.06);
    
    --bg-app: #0b0f19;
    --bg-surface: #161b26;
    --bg-surface-hover: #212836;
    --border-color: #242c3d;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    
    /* Semantic Colors - Dark Theme */
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --success-border: rgba(16, 185, 129, 0.25);
    
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --warning-border: rgba(245, 158, 11, 0.25);
    
    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    --danger-border: rgba(239, 68, 68, 0.25);
    
    --info: #0ea5e9;
    --info-light: rgba(14, 165, 233, 0.1);
    --info-border: rgba(14, 165, 233, 0.25);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Base resets & Clean Canvas */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-app);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

/* Scrollbars - Minimalist & Sleek */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Grid Layout Slot Definitions */
.app-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    grid-template-rows: var(--topbar-height) 1fr;
    grid-template-areas: 
        "sidebar topbar"
        "sidebar content";
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    transition: grid-template-columns var(--transition-normal);
}

.app-layout.sidebar-collapsed {
    grid-template-columns: var(--sidebar-width-collapsed) 1fr;
}

/* Typography polish */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.h1-title { 
    font-size: 24px; 
    font-weight: 700; 
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.h2-title { 
    font-size: 16px; 
    font-weight: 600; 
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.h3-title { 
    font-size: 13.5px; 
    font-weight: 600; 
}
.text-label { 
    font-size: 11px; 
    font-weight: 600; 
    color: var(--text-secondary); 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
}
.text-caption { 
    font-size: 12.5px; 
    color: var(--text-secondary); 
    line-height: 1.5;
}
.text-muted-custom { 
    color: var(--text-muted); 
}

/* Buttons - Premium SaaS Tactility */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 500;
    border-radius: var(--radius-8);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.btn-custom:active {
    transform: scale(0.97);
}

.btn-custom-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    border: 1px solid #1e40af;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* For Blue Primary actions in Dashboard / Module creation */
[data-theme="dark"] .btn-custom-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff !important;
    border-color: #1d4ed8;
}

.btn-custom-secondary {
    background-color: var(--bg-surface);
    border-color: var(--border-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}
.btn-custom-secondary:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.btn-custom-danger {
    background-color: var(--danger-light);
    color: var(--danger);
    border-color: var(--danger-border);
}
.btn-custom-danger:hover {
    background-color: var(--danger);
    color: #ffffff;
    border-color: var(--danger);
    transform: translateY(-1px);
}

.btn-custom-link {
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 0;
    text-decoration: none;
    font-weight: 500;
}
.btn-custom-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Stat Cards & General Cards Redesign */
.card-custom {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-24) !important;
    padding: var(--space-24);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.card-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

/* Stat Card Left border accent indicator styling */
.card-custom[style*="border-left"] {
    border-left-width: 4px !important;
}

/* Modern Forms & Section Cards */
.form-group-custom {
    margin-bottom: var(--space-16);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-label-custom {
    font-weight: 500;
    font-size: 12.5px;
    color: var(--text-primary);
}
.form-control-custom {
    width: 100%;
    height: 42px;
    padding: 10px 14px;
    font-size: 13.5px;
    border-radius: var(--radius-12) !important;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-select-custom {
    width: 100%;
    height: 42px;
    padding: 9px 36px 9px 14px;
    font-size: 13.5px;
    font-family: var(--font-sans);
    border-radius: var(--radius-12) !important;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}
.form-select-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-footer-actions {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: var(--space-16) var(--space-24) !important;
    margin-top: var(--space-32) !important;
    border-radius: var(--radius-16) !important;
    box-shadow: var(--shadow-sm);
}

/* Modern status badges */
.badge-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 500;
    border-radius: 99px;
    line-height: 1.2;
    border: 1px solid transparent;
}
.badge-custom-primary { background-color: var(--primary-light); color: var(--primary); border-color: var(--primary-border); }
.badge-custom-success { background-color: var(--success-light); color: var(--success); border-color: var(--success-border); }
.badge-custom-warning { background-color: var(--warning-light); color: var(--warning); border-color: var(--warning-border); }
.badge-custom-danger { background-color: var(--danger-light); color: var(--danger); border-color: var(--danger-border); }
.badge-custom-info { background-color: var(--info-light); color: var(--info); border-color: var(--info-border); }
.badge-custom-muted { background-color: var(--bg-surface-hover); color: var(--text-secondary); border-color: var(--border-color); }

/* Blazor override settings */
#app {
    display: block;
    min-height: 100vh;
}

#blazor-error-ui {
    background: var(--danger-light);
    color: var(--danger);
    border-top: 1px solid var(--danger-border);
    padding: 12px 24px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-lg);
}

/* Sticky Header Enterprise Tables */
.table-container-custom {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-24) !important;
    border: none !important;
    background-color: var(--bg-surface);
}

.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.table-custom th {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px var(--space-24);
    border-bottom: 1px solid var(--border-color);
}

.table-custom td {
    padding: 18px var(--space-24);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 13.5px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.table-custom tr:last-child td {
    border-bottom: none;
}

/* Alternating Row Shading */
.table-custom tbody tr:nth-child(even) td {
    background-color: rgba(248, 250, 252, 0.5);
}
[data-theme="dark"] .table-custom tbody tr:nth-child(even) td {
    background-color: rgba(33, 40, 54, 0.25);
}

.table-custom tr:hover td {
    background-color: var(--bg-surface-hover) !important;
    cursor: pointer;
}

/* Row selected state highlight */
.table-custom tr:has(input[type="checkbox"]:checked) td {
    background-color: var(--primary-light) !important;
}

/* Density overrides */
.table-density-compact td { padding: 10px var(--space-24); font-size: 13px; }
.table-density-compact th { padding: 10px var(--space-24); }
.table-density-spacious td { padding: 24px var(--space-24); font-size: 14px; }
.table-density-spacious th { padding: 20px var(--space-24); }

/* Navigation Tab Bar */
.tabs-container {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--space-24);
    gap: var(--space-24);
}

.tab-item {
    padding: 10px 4px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    font-size: 13.5px;
}

.tab-item:hover {
    color: var(--text-primary);
}

.tab-item.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
    font-weight: 600;
}

/* Premium Sidebar Layout styling */
.sidebar-slot {
    grid-area: sidebar;
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    border-right: 1px solid var(--sidebar-border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.02);
}

/* Active navigation indicators and pill styling */
.nav-btn-custom {
    position: relative;
    border-radius: var(--radius-12) !important;
    transition: all var(--transition-normal) !important;
    color: var(--sidebar-text-muted) !important;
    font-size: 13.5px !important;
    padding: 10px 16px !important;
    font-weight: 500 !important;
}

.nav-btn-custom:hover {
    color: var(--sidebar-text) !important;
    background-color: var(--bg-surface-hover) !important;
    transform: translateX(2px);
}

/* Sidebar Active Indicators - Gradient Blue Pill */
.nav-btn-custom.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
    font-weight: 600 !important;
}
.nav-btn-custom.active i {
    color: #ffffff !important;
}
.nav-btn-custom.active span {
    color: #ffffff !important;
}
.nav-btn-custom.active .badge-custom {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    border-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    font-weight: 700 !important;
}

.nav-btn-custom i {
    transition: color var(--transition-fast);
}

/* Premium Topbar layout with Glassmorphism blur */
.topbar-slot {
    grid-area: topbar;
    background-color: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-24);
    z-index: 90;
    transition: background-color var(--transition-normal);
}

[data-theme="dark"] .topbar-slot {
    background-color: rgba(22, 27, 38, 0.75) !important;
    border-bottom-color: rgba(36, 44, 61, 0.8);
}

/* Center Global Search */
.topbar-slot input[placeholder*="Search"] {
    border-radius: var(--radius-12) !important;
    background-color: var(--bg-surface-hover) !important;
    border: 1px solid var(--border-color) !important;
    padding-left: 40px !important;
    height: 40px !important;
    transition: all var(--transition-normal);
}

.topbar-slot input[placeholder*="Search"]:focus {
    background-color: var(--bg-surface) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08) !important;
}

/* Circular Buttons styling */
.topbar-slot .btn-custom-secondary {
    border-radius: 99px !important;
    background-color: var(--bg-surface) !important;
    border: 1px solid var(--border-color) !important;
    transition: all var(--transition-normal) !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.topbar-slot .btn-custom-secondary:hover {
    background-color: var(--bg-surface-hover) !important;
    transform: scale(1.05) !important;
}

/* Rounded Profile Avatar */
.topbar-slot .dropdown button .rounded-circle {
    box-shadow: 0 0 0 2px var(--bg-surface), 0 0 0 4px var(--primary-border);
    transition: all var(--transition-normal);
}
.topbar-slot .dropdown button .rounded-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--bg-surface), 0 0 0 4px var(--primary);
}

/* Animation for active dropdown fades */
.dropdown-menu.show {
    animation: dropdownFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Layout Main Content Wrapper */
.content-slot {
    grid-area: content;
    padding: var(--space-32);
    overflow-y: auto;
    max-height: calc(100vh - var(--topbar-height));
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    background-color: var(--bg-app);
}

/* Interactive elements / Dropdown menu animations */
.dropdown-menu {
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-lg) !important;
    background-color: var(--bg-surface) !important;
    transform-origin: top right;
    animation: scaleUp 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dropdown-item {
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.dropdown-item:hover {
    background-color: var(--bg-surface-hover) !important;
}

/* Timeline Layout */
.timeline-list {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-24);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 2px solid var(--primary);
}

.timeline-item-date {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.timeline-item-title {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 2px;
}

.timeline-item-desc {
    color: var(--text-secondary);
    font-size: 12.5px;
}

/* Transitions & Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideInLeft {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.96); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes loadingSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.animate-fade-in {
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-toast {
    animation: slideInLeft 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-bounce {
    animation: bounce 3s infinite ease-in-out;
}

/* Modals & Overlay Backdrops */
.modal-backdrop-custom {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 9, 11, 0.4);
    backdrop-filter: blur(2px);
    z-index: 2000;
}

.drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spinner-custom {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--border-color);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.skeleton-line, .skeleton-circle {
    background: linear-gradient(90deg, var(--bg-surface-hover) 25%, var(--border-color) 50%, var(--bg-surface-hover) 75%);
    background-size: 200% 100%;
    animation: loadingSkeleton 1.4s infinite;
    border-radius: 4px;
}

/* Chart adjustments */
svg path, svg polygon, svg rect {
    transition: all 0.2s ease;
}

/* Adaptive focus styling */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Dashboard Premium Shortcut Buttons */
.dashboard-shortcut-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: 20px !important;
    background-color: var(--bg-surface) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-16) !important;
    color: var(--text-primary) !important;
    cursor: pointer;
    transition: all var(--transition-normal) !important;
    box-shadow: var(--shadow-sm) !important;
}

.dashboard-shortcut-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-border) !important;
    background-color: var(--primary-light) !important;
}

.dashboard-shortcut-btn:active {
    transform: scale(0.97) !important;
}

/* Timeline Activity Items */
.timeline-activity-item {
    padding: var(--space-8) var(--space-12) !important;
    border-radius: var(--radius-12) !important;
    transition: all var(--transition-fast) !important;
}
.timeline-activity-item:hover {
    background-color: var(--bg-surface-hover) !important;
    transform: translateX(4px) !important;
}

/* Premium Auth background blobs */
.auth-bg-blobs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background-color: var(--bg-app);
}

.auth-blob-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

.auth-blob-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}