﻿.timeline-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.timeline-entry {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  background: var(--panel-soft);
  padding: 12px;
}
.timeline-entry p { margin: 8px 0 0; }
.timeline-entry-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.timeline-entry-header time {
  color: var(--muted);
  font-size: .84rem;
}
.task-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}
.task-list h4 { margin: 8px 0 0; }
.task-item {
  align-items: start;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
}
.task-item p { margin: 6px 0 0; }
.task-item form { margin: 0; }
.task-overdue { border-left: 4px solid #d97706; }
.task-completed { opacity: .78; }

.work-queue-list {
  min-width: 0;
}
.task-composer {
  min-width: 0;
}
.task-composer .section-heading {
  margin-bottom: 10px;
}
.task-composer .section-heading h2,
.task-composer .section-heading p {
  margin: 0;
}
.task-composer .form-section {
  margin-bottom: 12px;
  padding: 12px;
}
.task-composer .form-section h2 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.task-composer .field {
  margin-bottom: 10px;
}
.task-composer .input,
.task-composer .select,
.task-composer .textarea {
  min-height: 38px;
}
.task-composer details.advanced-controls {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.task-composer details.advanced-controls > summary {
  cursor: pointer;
  font-weight: 800;
  padding: 9px 11px;
}
.task-composer details.advanced-controls .form-section {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  margin: 0;
}
