.project-list-panel {
  margin-top: 28px;
  padding: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.project-list {
  display: grid;
  gap: 10px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.project-card h4 {
  margin: 0 0 4px;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status-chip {
  min-width: 32px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  border-radius: 99px;
  padding: 4px 8px;
  color: #fff;
}

.status-chip.ok { background: #16a34a; }
.status-chip.warn { background: #f59e0b; }

.required-note {
  color: var(--danger);
  background: #fff1f2;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 900;
}

.missing-box {
  margin-top: 14px;
  color: var(--danger);
  font-weight: 700;
  line-height: 1.7;
}

.mode-switch {
  display: flex;
  background: #eaf0f8;
  padding: 4px;
  border-radius: 14px;
}

.mode-btn {
  background: transparent;
  padding: 8px 12px;
  color: #475569;
  font-weight: 800;
}

.mode-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(23,32,51,.08);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15,23,42,.42);
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal {
  width: min(920px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 35px 100px rgba(0,0,0,.24);
}

.help-icon {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--primary2);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.help-box {
  background: #f7f9fd;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.help-image {
  margin-top: 10px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

.reins-textarea {
  min-height: 300px;
  resize: vertical;
  line-height: 1.7;
}

.modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  color: #fff;
  background: rgba(23,32,51,.94);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  font-weight: 700;
}

.highlight-new {
  animation: highlightFade 2s ease-out;
}

@keyframes highlightFade {
  0% { background: #fff0a6; }
  100% { background: transparent; }
}