/* ═══════════════════════════════════════════════════════════════════════════
   LIST VIEW
   ═════════════════════════════════════════════════════════════════════════ */
#list-view {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.list-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 2;
}
.list-table th:hover { color: var(--text-muted); }
.list-table th .sort-icon { margin-left: 4px; opacity: 0.5; }
.list-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  vertical-align: middle;
}
.list-table tr { transition: var(--transition); }
.list-table tr:hover td { background: var(--bg-secondary); cursor: pointer; }
.list-table tr:hover td:first-child { border-radius: 8px 0 0 8px; }
.list-table tr:hover td:last-child { border-radius: 0 8px 8px 0; }

.list-title-cell { max-width: 300px; }
.list-title-text { font-weight: 500; }

.list-add-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-top: 4px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 13px;
  transition: var(--transition);
}
.list-add-row:hover { background: var(--bg-secondary); color: var(--text-muted); }

/* Date cell */
.date-cell {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

/* Assignee cell */
.assignee-cell { display: flex; align-items: center; gap: 7px; }
.assignee-name { font-size: 12px; color: var(--text-muted); }
