@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #a5b4fc, #93c5fd);
}

.kanban {
    display: flex;
    gap: 14px;
    padding: 24px;
    width: 100%;
    height: 90vh;
    overflow-x: auto;
}

.kanban-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    overflow-y: auto;
    background-color: whitesmoke;
    border-radius: 12px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 12px;
    overflow: hidden;
    position: relative;
    min-width: 210px; /* ou o valor que preferir */
}

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

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

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

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

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

.kanban-column[data-id="5"]::after {
    background-color: #6ed0bc;
}

.kanban-title {
    display: flex;
    justify-content: space-between;
}

.kanban-title h2 {
    font-size: 18px;
    color: #4b5563;
    font-weight: 600;
}

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

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

.kanban-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: whitesmoke;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.badge {
    color: white;
    width: fit-content;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}

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

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

.card-icons i {
    color: #a8a8aa;
}

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

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

.badge.low {
    background-color: #92a5fb;
}

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

.dragging {
    opacity: 0.5;
}

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

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

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

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