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

body { 
    font-family: 'Inter', sans-serif; 
}

.interest-chip.selected { 
    background-color: #000; 
    color: #fff; 
    border-color: #000; 
}

.skeleton { 
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%); 
    background-size: 200% 100%; 
    animation: loading 1.5s infinite; 
}

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

#ai-ask-container { 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    width: 44px; 
}

#ai-ask-container.expanded { 
    width: 100%; 
}
