/* SafeCheck custom tweaks on top of Tailwind */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}
.sc-card {
    @apply bg-white rounded-2xl shadow p-6 border border-gray-100;
}
.sc-badge {
    @apply inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium;
}
.sc-badge-low {
    @apply bg-green-100 text-green-700;
}
.sc-badge-medium {
    @apply bg-yellow-100 text-yellow-700;
}
.sc-badge-high {
    @apply bg-red-100 text-red-700;
}
.sc-button-primary {
    @apply inline-flex items-center justify-center rounded-xl px-4 py-2 font-semibold text-white bg-green-600 hover:bg-green-700 text-sm;
}
.sc-button-secondary {
    @apply inline-flex items-center justify-center rounded-xl px-4 py-2 font-semibold text-gray-700 bg-gray-100 hover:bg-gray-200 text-sm;
}
