/* Smart Insights Styles */
.insights-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.insight-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

.insight-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
}

.insight-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.insight-text strong {
    color: #f8fafc;
    font-weight: 600;
}

.insight-text em {
    font-style: normal;
    color: #bfdbfe;
    /* Light Blue for variable names */
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Color Variants for Icons (Tailwind-like map) */
.text-red-400 {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.text-blue-400 {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

.text-yellow-400 {
    color: #facc15;
    background: rgba(250, 204, 21, 0.1);
}

.text-purple-400 {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
}

.text-green-400 {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}