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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* AI Analytics */
.ai-insight-card {
    transition: all 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.ai-insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Chart Containers */
.chart-container {
    position: relative;
    height: 250px;
    width: 100%;
}

/* Dashboard Tables */
.dashboard-table th {
    background-color: #f9fafb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-table tr:nth-child(even) {
    background-color: #f9fafb;
}
#hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.shadow-soft {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}