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

:root {
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: 'Outfit', sans-serif !important;
}

/* Glassmorphism & Card Hover Effects */
.fi-wi-stats-overview-stat {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.25) !important;
}

.fi-wi-stats-overview-stat:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: 0 12px 30px -5px rgba(124, 58, 237, 0.25) !important;
    border-color: rgba(167, 139, 250, 0.3) !important;
}

.fi-section {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 1rem !important;
}

/* Gradient Header Text */
.fi-header-heading {
    background: linear-gradient(135deg, #a78bfa 0%, #38bdf8 50%, #34d399 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

/* Custom Table Styling */
.fi-ta-table {
    border-collapse: separate !important;
    border-spacing: 0 0.5rem !important;
}

.fi-ta-row {
    transition: all 0.2s ease !important;
}

.fi-ta-row:hover {
    background-color: rgba(124, 58, 237, 0.06) !important;
}

/* Custom Navigation Styling */
.fi-sidebar-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 0.75rem !important;
}

.fi-sidebar-item-button {
    border-radius: 0.5rem !important;
    transition: all 0.2s ease !important;
}

.fi-sidebar-item-button:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%) !important;
}

/* Custom Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(52, 211, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(52, 211, 153, 0.8);
    }
}

.glow-pulse {
    animation: pulse-glow 2s infinite ease-in-out;
}
