/* Page-specific overrides only — shared design tokens and component styles
   live in /shared/tokens.css and /shared/base.css.

   Bug [190]: My Tasks used to reuse .artist-layout (a two-column
   task-list/task-detail grid, still used by public/artist/ and
   public/lead/). This page now stacks a simple task table above a full-width
   detail panel instead, so the layout rules live here rather than in the
   shared two-column classes. */

/* "Create personal task" button lives in the tab bar next to the
   Tasks/Notifications tabs instead of the (now removed) task-list column. */
.notif-tabs {
  align-items: center;
}

.notif-tab-action {
  margin-left: auto;
  margin-top: 0;
}

#tasks-panel h2 {
  font-size: var(--text-md);
  margin: 0 0 var(--space-3);
}

#my-task-table,
#personal-tasks-section .task-table {
  margin-bottom: var(--space-4);
}

.my-task-row {
  cursor: pointer;
}

.my-task-row.is-selected {
  background: var(--accent-subtle);
}

.my-task-row.is-selected:hover {
  background: var(--accent-subtle);
}

.my-task-checklist-badge {
  margin-left: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.personal-tasks-section h3 {
  font-size: var(--text-md);
  margin: 0 0 var(--space-2);
}

/* Task detail panel is now a full-width section below the task list rather
   than the right-hand column of a flex row, so it doesn't need flex:1 (a
   no-op outside a flex container) and instead gets its own top margin. */
.task-detail-panel {
  margin-top: var(--space-5);
}
