.kanban-board {
    display: flex;
    gap: 1.25rem; /* Jarak antar kolom */
    overflow-x: auto;
    white-space: nowrap; /* Mencegah wrap ke bawah */
    scroll-behavior: smooth; /* Efek scroll yang halus */
    padding-bottom: 10px; /* Beri padding agar scrollbar tidak terlalu mepet */
}

/* Scrollbar selalu terlihat */
.kanban-board {
    scrollbar-gutter: stable;
}

/* Membuat scrollbar di atas komponen */
.scrollbar-wrapper {
    position: absolute;
    top: -15px; /* Sesuaikan posisi agar di atas */
    left: 0;
    width: 100%;
    height: 7px;
    background: #fff;
    border-radius: 200px;
}

.kanban-column {
    width: 312px;
    background: #FBFBFB;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.04);
    border-radius: .75rem;
}

.kanban-header {
    font-size: var(--fs-body-sm);
    font-weight: var(--font-weight-600);
    color: var(--color-base-black, #313131);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: var(--padding-sm);
}

.kanban-header .count-card {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 200px;
    background: var(--neutral-grey-3, #EEE);
}

.kanban-body {
    padding: var(--padding-md);
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 500px;
    overflow-y: auto;
}

.kanban-card {
    background: #FFF;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanban-card a:hover {
    color: var(--color-secondary);
}

.kanban-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-profile img {
    width: 35px;
    height: 35px;
    padding: 2px;
    background: #FFB6B6;
    border-radius: 999999px;
}

.detail-photo {
    width: 77px;
    height: 77px;
    padding: 3px;
    background: #FFB6B6;
    border-radius: 999999px;
}

.filter-kanban {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hiring-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hiring-process .title-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hiring-process i {
    height: fit-content;
}


















