ÿ/* Board */
.board {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    height: 100%;
}

/* Column */
.column {
    min-width: 300px;
    width: 320px;
    background-color: #f1f5f9;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    height: max-content;
    max-height: 100%;
    transition: background-color 0.2s;
}

.isOver {
    background-color: #e2e8f0;
    /* Slate 200 */
    box-shadow: inset 0 0 0 2px var(--color-primary);
}

.columnHeader {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.columnTitle {
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.columnCount {
    background: white;
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.columnContent {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    min-height: 100px;
}

.emptyState {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 2rem 0;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-sm);
}

/* Card */
.card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: grab;
    position: relative;
    border: 1px solid transparent;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.card:active {
    cursor: grabbing;
}

.cardHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cardLink {
    text-decoration: none;
    color: inherit;
}

.cardLink:hover .clientName {
    color: var(--color-primary);
}

.clientName {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--text-main);
}

.cardDetails {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.detailRow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cardFooter {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.matchesCount {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
}

/* Badges */
.newBadge {
    background-color: var(--status-sold);
    /* Green for 'New' badge */
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.date {
    font-size: 0.7rem;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}ÿ*cascade082~file:///c:/Users/Victoria/OneDrive/Escritorio/Proyectos%20Antigravity/Derpa%20Tech/web/src/components/kanban/Kanban.module.css