/* ============================================================
   reviewer.css — Reviewer view (shared link, no sidebar)
   ============================================================ */

#view-reviewer {
  background: var(--surface);
  flex-direction: column;
  min-height: 100vh;
}

/* Reviewer topbar */
.reviewer-topbar {
  height: 56px;
  background: var(--sidebar-bg);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
  flex-shrink: 0;
}
.reviewer-brand { display: flex; align-items: center; gap: 8px; }
.reviewer-brand-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.reviewer-brand-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: white; }
.reviewer-divider    { width: 1px; height: 20px; background: rgba(255,255,255,0.1); margin: 0 4px; }
.reviewer-project-name { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }
.reviewer-project-name strong { color: white; font-weight: 700; }
.reviewer-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.reviewer-name-badge {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500;
}
.reviewer-name-badge strong { color: white; }

/* Reviewer body */
.reviewer-body { flex: 1; display: flex; overflow: hidden; }

/* Vertical tool strip */
.reviewer-toolbar-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: white;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.rtool-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 6px 0 2px;
}

/* Name entry modal */
.name-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.name-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 400px;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.name-modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.name-modal h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.name-modal p  { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.name-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 14px; outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
  color: var(--text-primary);
}
.name-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.btn-start-reviewing {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--accent), #2563EB);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-start-reviewing:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }
.name-modal-note { margin-top: 12px; text-align: center; font-size: 11px; color: var(--text-muted); }
