@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #f1f1f1; } ::-webkit-scrollbar-thumb { background: #f59e0b; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #d97706; } /* Animation classes */ .fade-in { animation: fadeIn 0.3s ease-in-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } /* Question card styles */ custom-question-card { display: block; margin-bottom: 1.5rem; } custom-question-card .option { transition: background-color 0.2s ease, border-color 0.2s ease; } custom-question-card .option.selected div:first-child { background-color: #f59e0b; border-color: #f59e0b; }