/* Tasks/Roadmap Page Styles - Restored from Inline */

/* Kanban Board Layout */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-height: 600px;
}

.kanban-column {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kanban-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-header h6 {
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kanban-count {
    background: var(--surface-hover);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.kanban-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

/* Task Card */
.task-card {
    background: var(--surface-hover);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.task-card:hover {
    border-color: var(--ct-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.task-card.priority-high {
    border-left: 3px solid #ef4444;
}

.task-card.priority-medium {
    border-left: 3px solid #f59e0b;
}

.task-card.priority-low {
    border-left: 3px solid #10b981;
}

.task-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.task-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-tags {
    display: flex;
    gap: 0.5rem;
}

.task-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.tag-frontend {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.tag-backend {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.tag-ai {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.tag-data {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.tag-infra {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.task-assignee {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ct-primary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
}

/* Progress Stats */
.progress-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.progress-stat {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.progress-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.progress-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Column Specific Colors */
.column-todo .kanban-header {
    border-bottom-color: #64748b;
}

.column-todo .kanban-count {
    background: rgba(100, 116, 139, 0.15);
    color: #94a3b8;
}

.column-progress .kanban-header {
    border-bottom-color: #3b82f6;
}

.column-progress .kanban-count {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.column-done .kanban-header {
    border-bottom-color: #10b981;
}

.column-done .kanban-count {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

/* Responsive */
@media (max-width: 992px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
}