@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F7;
    color: #1D1D1F;
}

.kanban {
    display: flex;
    gap: 16px;
    padding: 24px;
    width: 100%;
    height: 90vh;
    overflow-x: auto;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.kanban-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background-color: #F9F9F9;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 250px;
    overflow-y: auto;
}

.kanban-column::after {
    position: absolute;
    content: '';
    height: 4px;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 2px;
}

.kanban-column[data-id="1"]::after {
    background-color: #FFD60A;
}

.kanban-column[data-id="2"]::after {
    background-color: #FF9500;
}

.kanban-column[data-id="3"]::after {
    background-color: #34C759;
}

.kanban-column[data-id="4"]::after {
    background-color: #007AFF;
}

.kanban-title {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #1D1D1F;
}

.add-card {
    color: #007AFF;
    font-size: 20px;
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    overflow-y: auto;
}

.kanban-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

.kanban-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.badge {
    color: #FFFFFF;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.badge.high {
    background-color: #FF453A;
}

.badge.medium {
    background-color: #FFD60A;
}

.badge.low {
    background-color: #32D74B;
}

.card-infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-icons {
    display: flex;
    gap: 16px;
}

.card-icons i {
    color: #8E8E93;
}

.user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.dragging {
    opacity: 0.5;
}

.cards-hover {
    background-color: #E5E5EA;
    border-radius: 8px;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background-color: #E5E5EA;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
    background-color: #C7C7CC;
    border-radius: 20px;
}

.delete-card {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
    background-color: #262626;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.delete-card:hover {
    background-color: #262626;
}