/* Özel scrollbar ve diğer ufak UI dokunuşları Tailwind ile zor olanlar buraya yazılabilir */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}

::-webkit-scrollbar-thumb {
    background: #374151; /* gray-700 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563; /* gray-600 */
}
