| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-4px); | |
| } | |
| .hero { | |
| background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); | |
| } | |
| /* Drug Interaction Styles */ | |
| .error { | |
| color: #ef4444; | |
| padding: 0.5rem; | |
| background: #fee2e2; | |
| border-radius: 0.25rem; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } |