/* Kanban-style applicant pipeline */
.delta-pipeline__column {
    background: var(--delta-gray-50);
    border-radius: var(--delta-radius);
    padding: 12px;
    min-height: 200px;
}
.delta-pipeline__column header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--delta-primary);
}
.delta-pipeline__list { display: flex; flex-direction: column; gap: 8px; }
.delta-pipeline__card {
    background: var(--delta-white);
    padding: 12px;
    border-radius: var(--delta-radius);
    box-shadow: var(--delta-shadow-xs);
}
