/* Simple custom styles to supplement Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom scrollbar for textarea */
textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-track {
    background: #f1f1f1;
}
textarea::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

