body {
    font-family: 'Segoe UI', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.kanban-col {
    min-height: 200px;
}

.task-card {
    cursor: grab;
    transition: border 0.3s;
    border: 2px solid transparent;
}

.task-card:hover {
    /* transform: translateY(-2px); */
    border: 2px solid #999;
}

.task-card:active {
    cursor: grabbing;
}

.column-header {
    cursor: default;
}

.column-header.draggable {
    cursor: grab;
}

.column-header.draggable:active {
    cursor: grabbing;
}

.ui-sortable-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    visibility: visible !important;
    border: 2px dashed #ccc;
}

.kanban-col .ui-sortable-placeholder {
    height: 80px;
    margin-bottom: 0.75rem;
}

#board-columns>.ui-sortable-placeholder {
    width: 320px;
    height: auto;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.1);
    margin-right: 1.5rem;
}

/* Color Labels */
.color-opt {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-opt.selected {
    border-color: #333;
    transform: scale(1.1);
}

/* Utilities */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Shark Fin Footer */
.tealeaf-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 40;
}

.shark-tank {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
}

.shark-fin {
    width: 120px;
    height: 70px;
    background-image: url('../sharki.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    bottom: -40px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    animation: shark-swim 25s linear infinite;
}

@keyframes shark-swim {
    0% {
        left: -150px;
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-8deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }

    100% {
        left: 100%;
        transform: translateY(30px) rotate(15deg);
    }
}

.footer-content {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    z-index: 51;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.dark .footer-content {
    background: rgba(30, 41, 59, 0.9);
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.1);
}

.grabbing {
    cursor: grabbing !important;
    cursor: -webkit-grabbing !important;
    user-select: none;
}