/* ============================================================
   KANBAN BOARD (FASA PENYAMPAIAN)
   ============================================================ */
.kanban-board {
    padding: 24px 16px;
    overflow-x: auto;
}

.kanban-cols {
    display: flex;
    gap: 16px;
    min-width: 1000px;
    position: relative;
}

.kanban-cols::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.k-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.k-col-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.k-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--kpm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
    background-color: var(--sky-bg);
}

.k-col:nth-child(2) .k-step-icon {
    border-color: #8B5CF6;
    background-color: #F5F3FF;
}

.k-col:nth-child(5) .k-step-icon {
    border-color: #8B5CF6;
    background-color: #F5F3FF;
}

body.dark-mode .k-col:nth-child(2) .k-step-icon,
body.dark-mode .k-col:nth-child(5) .k-step-icon {
    background-color: rgba(139, 92, 246, 0.15);
}

.k-step-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.k-step-desc {
    font-size: 10px;
    color: var(--text-faint);
    margin-bottom: 8px;
    min-height: 24px;
    line-height: 1.3;
}

.k-step-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--kpm-blue);
    background: var(--blue-bg);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid var(--blue-border);
}

.k-col:nth-child(2) .k-step-count,
.k-col:nth-child(5) .k-step-count {
    color: #7C3AED;
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.k-col-body {
    background: var(--bg-subtle);
    border-radius: var(--r-md);
    padding: 10px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border-light);
}

.k-item {
    background: var(--bg-white);
    border-radius: var(--r-sm);
    padding: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.k-item:hover {
    transform: translateY(-2px);
    border-color: var(--kpm-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.k-item-kod {
    font-family: 'SF Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    color: var(--kpm-navy);
    margin-bottom: 4px;
}

body.dark-mode .k-item-kod {
    color: #93c5fd;
}

.k-item-name {
    font-size: 12px;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 600;
}
