/* ---- Outputs View ---- */
.outputs-view {
  flex-direction: column;
  background: #DCFCE7;
  min-height: 100vh;
}
.outputs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  z-index: 250;
  flex-shrink: 0;
  border-bottom: 2px solid #16A34A;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.outputs-header .epw-view-header-right {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 3px;
}

/* ---- Table ---- */
.outputs-table-container {
  flex: 1;
  overflow: auto;
  padding: 0 20px 20px;
}
.outputs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.outputs-table thead th {
  position: sticky;
  top: 0;
  background: #DCFCE7;
  padding: 8px 12px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16A34A;
  border-bottom: 2px solid rgba(22, 163, 74, 0.2);
  z-index: 1;
}
.outputs-row {
  border-bottom: 1px solid rgba(22, 163, 74, 0.08);
  transition: background 0.12s;
}
.outputs-row:hover {
  background: rgba(22, 163, 74, 0.04);
}
.outputs-row td {
  padding: 10px 12px;
  vertical-align: middle;
}
.outputs-cell-ref .wip-ref {
  font-size: 0.72rem;
}
.outputs-cell-task {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #334155;
}
.outputs-cell-worker {
  color: #16A34A;
  font-weight: 600;
  font-size: 0.78rem;
}
.outputs-cell-title {
  font-weight: 500;
  color: #1E293B;
}
.outputs-cell-title i {
  margin-right: 6px;
}
.outputs-type-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: capitalize;
  background: rgba(22, 163, 74, 0.1);
  color: #16A34A;
}
.outputs-cell-date {
  font-size: 0.75rem;
  color: #64748B;
  white-space: nowrap;
}
.outputs-link {
  color: #16A34A;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.78rem;
}
.outputs-link:hover {
  text-decoration: underline;
}
.outputs-path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #64748B;
}
.outputs-plan-link {
  color: #16a34a;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.82rem;
}
.outputs-plan-link:hover {
  color: #15803d;
}
.outputs-actions-cell { white-space: nowrap; }
.outputs-actions-cell .outputs-delete-btn,
.outputs-actions-cell .outputs-comments-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 0.8rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.outputs-actions-cell .outputs-delete-btn:hover,
.outputs-actions-cell .outputs-comments-btn:hover { opacity: 1; }
.outputs-row:hover { background: rgba(22, 163, 74, 0.04); }
.outputs-row-expanded { background: rgba(22, 163, 74, 0.06) !important; }
.outputs-detail-row { background: rgba(22, 163, 74, 0.03); }
.outputs-inline-detail {
  padding: 16px 24px;
  border-top: 1px solid rgba(22, 163, 74, 0.12);
  border-bottom: 2px solid rgba(22, 163, 74, 0.15);
}
.outputs-inline-cols {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
}
.outputs-inline-right { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.outputs-inline-comments { margin-top: 12px; }
