
/* Custom Scrollbar Styling for Task Lists */
.task-list::-webkit-scrollbar {
    width: 8px;
}

.task-list::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 4px;
    margin: 4px 0;
}

.task-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}

.task-list::-webkit-scrollbar-thumb:hover {
    background: var(--bg-hover);
}

.task-list::-webkit-scrollbar-corner {
    background: transparent;
}

/* Ensure kanban columns have proper scroll behavior */
.kanban-column {
    overflow: hidden;
}
