body {
    padding-top: 56px;
    background-color: #f8f9fa;
}

/* ── Kanban board ── */
.kanban-col {
    min-height: 400px;
}

.task-card {
    cursor: pointer;
    transition: box-shadow 0.15s ease;
}

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

/* ── Priority badges ── */
.badge-priority-low    { background-color: #6c757d; }
.badge-priority-medium { background-color: #0d6efd; }
.badge-priority-high   { background-color: #fd7e14; }
.badge-priority-urgent { background-color: #dc3545; }

/* ── Tag input ── */
.tag-container {
    min-height: 38px;
    cursor: text;
    position: relative;
}

.tag-container .tag-input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 120px;
    background: transparent;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-pill .remove-tag {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
}

.tag-pill .remove-tag:hover {
    color: #fff;
}

.tag-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: 180px;
    overflow-y: auto;
}

/* ── Assignee avatars ── */
.assignee-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #6c757d;
    color: #fff;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    border: 2px solid #fff;
    font-weight: 600;
}

/* ── Notes ── */
.note-item {
    border-left: 3px solid #dee2e6;
    padding-left: 0.75rem;
}

/* ── Overdue ── */
.overdue-badge {
    font-size: 0.7rem;
}

/* ── Utilities ── */
.cursor-pointer { cursor: pointer; }
