body {
    font-family: Arial, sans-serif;
    background-color: #f4f5f7;
    margin: 0;
    padding: 20px;
}

.board {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap; /* Prevents lists from wrapping */
}

.list {
    background-color: #ebecf0;
    padding: 10px;
    border-radius: 3px;
    width: 272px;
    min-width: 272px;
    display: inline-block;
    vertical-align: top;
    height: fit-content;
}

.list-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.cards-container {
    min-height: 5px; /* Ensures container is a drop target even when empty */
}

.card {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(9,30,66,.25);
    padding: 8px 12px;
    margin-bottom: 8px;
    cursor: pointer;
    line-height: 20px;
}

/* Style for the card being dragged */
.card:active {
    opacity: 0.5;
    /* Optional: Add a slight rotation for Trello-like feel */
    transform: rotate(1deg);
}

/* Style for the visual placeholder when hovering over a drop zone */
.dragging {
    opacity: 0;
}