/* Custom Toolbar Buttons */
.toolbar-btn {
    @apply p-2 rounded-md text-gray-300 hover:bg-gray-700 hover:text-white transition-colors;
}

/* Custom Sidebar Buttons */
.sidebar-btn {
    @apply p-2 rounded-md text-gray-400 hover:bg-gray-700 hover:text-blue-400 transition-colors;
}

.sidebar-btn.active {
    @apply bg-gray-700 text-blue-400;
}

/* Symbol Buttons */
.symbol-btn {
    @apply p-2 rounded-full text-gray-400 hover:bg-gray-700 hover:text-blue-400 transition-colors;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    @apply bg-gray-800;
}

::-webkit-scrollbar-thumb {
    @apply bg-gray-600 rounded-full;
}

::-webkit-scrollbar-thumb:hover {
    @apply bg-gray-500;
}