/* style.css */
body {
    -webkit-font-smoothing: antialiased;
}

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