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

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

.tab-btn.active {
    @apply border-primary-500 text-primary-600;
}

#outputContent::-webkit-scrollbar {
    width: 6px;
}

#outputContent::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#outputContent::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

#outputContent::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.highlight-important {
    background-color: rgba(234, 179, 8, 0.2);
    padding: 0 2px;
    border-radius: 2px;
}

.highlight-risk {
    background-color: rgba(239, 68, 68, 0.2);
    padding: 0 2px;
    border-radius: 2px;
    text-decoration: underline;
}