/* ============================================================
   Task focus view + status group header
   ============================================================ */

/* Status group header */
.status-group-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 8px 0;
}

.task-focus-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.task-focus-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.task-focus-back-btn,
.task-focus-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 12px;
    transition: all 0.15s ease;
}
.task-focus-back-btn:hover,
.task-focus-action-btn:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
    background: #f8fbff;
}
.task-focus-meta {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.task-focus-path {
    font-size: 0.75rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
}
.task-focus-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
}
.task-focus-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-end;
    flex-shrink: 0;
}
.task-focus-action-btn-primary {
    border-color: transparent;
    background: #2563eb;
    color: #ffffff;
}
.task-focus-action-btn-primary:hover {
    border-color: transparent;
    background: #1d4ed8;
    color: #ffffff;
}
.task-focus-rows {
    min-width: fit-content;
}
.task-focus-empty {
    padding: 4px 4px 0;
    font-size: 0.8125rem;
    color: #64748b;
}
