/* assets/css/style.css */

/* Custom Scrollbar for columns */
.kanban-column::-webkit-scrollbar {
    width: 6px;
}
.kanban-column::-webkit-scrollbar-track {
    background: transparent;
}
.kanban-column::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}
.kanban-column:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Drag and Drop Visuals */
.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.drag-over {
    background-color: rgba(59, 130, 246, 0.1); /* Blue tint */
    border: 2px dashed rgba(59, 130, 246, 0.4);
}

/* Card Hover Effects */
.task-card {
    transition: all 0.2s ease;
}
.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
