/* ── Workspace Shell ───────────────────────────────────────────────────────── */

.workspace-page {
  min-height: 100vh;
  background: var(--color-bg, #0a0a0f);
  color: #fff;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */

.workspace-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.workspace-nav__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.workspace-nav__back {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.workspace-nav__back:hover { color: #fff; }

.workspace-nav__logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}
.workspace-nav__logo span { color: #5CC5A7; }

.workspace-nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workspace-nav__username {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.workspace-nav__logout {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.workspace-nav__logout:hover { border-color: #ff6b6b; color: #ff6b6b; }

/* ── Loading ───────────────────────────────────────────────────────────────── */

.ws-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  gap: 1rem;
  color: rgba(255,255,255,0.5);
}

.ws-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #5CC5A7;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Main content ──────────────────────────────────────────────────────────── */

.workspace-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* ── Page title ────────────────────────────────────────────────────────────── */

.ws-page-title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.2px;
}

/* ── Cards ───���─────────────────────────────────────────────────────────────── */

.ws-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
}

.ws-user-card {
  margin-bottom: 1.25rem;
}

/* ── User info inside card ─────────────────────────────────────────────────── */

.ws-brand-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5CC5A7;
  margin: 0 0 8px;
}

.ws-welcome-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
}

.ws-user-context {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-weight: 500;
}

/* ── STATE 1: Generate form card ───────────────────────────────────────────── */

.ws-gen-card {
  padding: 2rem 2.25rem 2.25rem;
}

.ws-gen-card__header {
  margin-bottom: 1.75rem;
}

.ws-gen-card__title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.15px;
}

.ws-gen-card__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.55;
}

.ws-gen-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ws-gen-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

.ws-gen-textarea {
  width: 100%;
  min-height: 120px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.9rem 1rem;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.ws-gen-textarea::placeholder { color: rgba(255,255,255,0.25); }
.ws-gen-textarea:focus        { outline: none; border-color: rgba(92,197,167,0.5); }

.ws-gen-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
  margin: 0;
}

/* Domain badges */
.ws-gen-domains {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ws-gen-domains__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ws-gen-domains__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ws-domain-badge {
  background: rgba(92,197,167,0.1);
  border: 1px solid rgba(92,197,167,0.25);
  border-radius: 0.35rem;
  color: #5CC5A7;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  letter-spacing: 0.02em;
}

/* Example prompt chips */
.ws-gen-examples {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ws-gen-examples__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ws-gen-examples__divider::before,
.ws-gen-examples__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.ws-gen-examples__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ws-gen-example-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.6;
  padding: 0.65rem 1rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: 100%;
}
.ws-gen-example-chip:hover {
  background: rgba(92,197,167,0.08);
  border-color: rgba(92,197,167,0.28);
  color: #fff;
}

/* Generate button */
.ws-gen-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5CC5A7;
  border: none;
  border-radius: 0.65rem;
  color: #0a0a0f;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  transition: opacity 0.2s, transform 0.15s;
}
.ws-gen-btn:hover:not(:disabled)  { opacity: 0.88; transform: translateY(-1px); }
.ws-gen-btn:disabled               { opacity: 0.5; cursor: not-allowed; }

.ws-gen-btn__loader {
  display: flex;
  align-items: center;
  gap: 3px;
}
.ws-gen-btn__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0a0a0f;
  animation: ws-dot-pulse 1.2s ease-in-out infinite;
}
.ws-gen-btn__dot:nth-child(2) { animation-delay: 0.2s; }
.ws-gen-btn__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes ws-dot-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1;   }
}

/* ── STATE 2: Progress card ─────────────────────────────────────────────────── */

.ws-prog-card {
  padding: 2rem 2.25rem;
}

.ws-prog-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ws-prog-spinner {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #5CC5A7;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin-top: 3px;
}

.ws-prog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.ws-prog-card__objective {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-style: italic;
}

/* Domain sections */
.ws-prog-domains {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ws-prog-domain__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 0.75rem;
}

.ws-prog-domain__caps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}

/* Capability progress card */
.ws-prog-cap {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.6rem;
  padding: 0.75rem 0.85rem;
  transition: border-color 0.2s;
}

.ws-prog-cap--completed { border-color: rgba(92,197,167,0.25);  background: rgba(92,197,167,0.05); }
.ws-prog-cap--progress  { border-color: rgba(245,166,35,0.25);  background: rgba(245,166,35,0.05); }
.ws-prog-cap--error     { border-color: rgba(255,107,107,0.25); background: rgba(255,107,107,0.05); }

.ws-prog-cap__icon {
  font-size: 0.85rem;
  font-weight: 700;
  width: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ws-prog-cap__icon--pending   { color: rgba(255,255,255,0.25); }
.ws-prog-cap__icon--progress  { color: #F5A623; animation: ws-spin-icon 1s linear infinite; }
.ws-prog-cap__icon--completed { color: #5CC5A7; }
.ws-prog-cap__icon--error     { color: #ff6b6b; }

@keyframes ws-spin-icon { to { transform: rotate(360deg); } }

.ws-prog-cap__name {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  flex: 1;
}

.ws-prog-cap__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 2px;
  flex-shrink: 0;
}
.ws-prog-cap__label--pending   { color: rgba(255,255,255,0.2); }
.ws-prog-cap__label--progress  { color: #F5A623; }
.ws-prog-cap__label--completed { color: #5CC5A7; }
.ws-prog-cap__label--error     { color: #ff6b6b; }

/* ── STATE 3: Done — Two-Panel Layout ──────────────────────────────────────── */

.ws-done-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */

.ws-done-sidebar {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 80px;
}

.ws-done-sidebar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5CC5A7;
  margin: 0;
}

.ws-done-sidebar__summary {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
}

/* Ring */
.ws-done-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  align-self: center;
  margin: 0.25rem auto;
}

.ws-done-ring {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
  display: block;
}

.ws-done-ring__track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 8;
}

.ws-done-ring__fill {
  fill: none;
  stroke: #5CC5A7;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.9s ease;
}

.ws-done-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ws-done-ring-inner__pct {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.ws-done-ring-inner__sub {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* Progress bar */
.ws-done-prog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-done-prog-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.ws-done-prog-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5CC5A7;
}

.ws-done-prog-bar {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.ws-done-prog-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #5CC5A7, #4aad95);
  border-radius: 3px;
  width: 0%;
  transition: width 0.9s ease;
}

/* Status list */
.ws-done-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ws-done-status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ws-done-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ws-done-status-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.ws-done-status-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

/* KB card */
.ws-done-kb-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(92,197,167,0.05);
  border: 1px solid rgba(92,197,167,0.18);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
}

.ws-done-kb-card__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.ws-done-kb-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5CC5A7;
  margin: 0 0 0.25rem;
}

.ws-done-kb-card__body {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
  line-height: 1.5;
}

/* ── Done — main panel ────────────────────────────────────────────────────── */

.ws-done-main {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ws-done-main__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ws-done-check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(92,197,167,0.15);
  border: 2px solid rgba(92,197,167,0.4);
  color: #5CC5A7;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ws-done-main__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
}

/* Capability cards */
.ws-done-caps {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ws-done-domain-header {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0.75rem 0 0.3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ws-done-domain-header:first-child { margin-top: 0; }

.ws-done-cap-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  transition: background 0.18s, border-color 0.18s;
  cursor: default;
}
.ws-done-cap-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.ws-done-cap-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.ws-done-cap-icon--domain {
  font-size: 1.2rem;
}
.ws-done-cap-icon--domain svg { display: block; }

.ws-done-cap-body { flex: 1; min-width: 0; }

.ws-done-cap-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-done-cap-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ws-done-cap-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.15rem 0.45rem;
  border-radius: 0.28rem;
  flex-shrink: 0;
}
.ws-done-cap-badge--complete    { background: rgba(92,197,167,0.12); color: #5CC5A7; }
.ws-done-cap-badge--in-progress { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.ws-done-cap-badge--not-started { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.32); }

.ws-done-cap-prog {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.ws-done-cap-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}

.ws-done-cap-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ws-done-cap-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s ease;
}

.ws-done-cap-arrow {
  color: rgba(255,255,255,0.18);
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
}
.ws-done-cap-card:hover .ws-done-cap-arrow {
  color: rgba(255,255,255,0.45);
  transform: translateX(2px);
}

.ws-done-cap-generate-btn {
  flex-shrink: 0;
  padding: 0.32rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  color: #5CC5A7;
  background: rgba(92,197,167,0.08);
  border: 1px solid rgba(92,197,167,0.3);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.ws-done-cap-generate-btn:hover {
  background: rgba(92,197,167,0.16);
}

/* Actions */
.ws-done-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ws-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #5CC5A7;
  border-radius: 0.65rem;
  color: #0a0a0f;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.ws-open-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.ws-new-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.65rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.7rem 1.3rem;
  transition: border-color 0.2s, color 0.2s;
}
.ws-new-btn:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 840px) {
  .ws-done-layout        { grid-template-columns: 1fr; }
  .ws-done-sidebar       { position: static; }
}

@media (max-width: 640px) {
  .workspace-main        { padding: 2rem 1rem 3rem; }
  .workspace-nav         { padding: 0 1rem; }
  .ws-gen-card,
  .ws-prog-card          { padding: 1.5rem 1.25rem; }
  .ws-done-main,
  .ws-done-sidebar       { padding: 1.25rem 1rem; }
  .ws-gen-btn,
  .ws-open-btn           { align-self: stretch; justify-content: center; }
  .ws-prog-domain__caps  { grid-template-columns: 1fr; }
  .ws-done-actions       { flex-direction: column; align-items: stretch; }
  .ws-new-btn            { text-align: center; }
  .ws-done-ring-wrap,
  .ws-done-ring          { width: 120px; height: 120px; }
}

/* ── Guest preview mode ─────────────────────────────────────── */
.ws-guest-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(92, 197, 167, 0.08);
  border: 1px solid rgba(92, 197, 167, 0.35);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 18px;
}
.ws-guest-banner p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}
.ws-guest-banner strong { color: #fff; }
.ws-guest-banner__btn {
  background: linear-gradient(135deg, #5CC5A7, #3DAFD3);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.12s;
}
.ws-guest-banner__btn:hover { opacity: 0.88; }

/* ── Done state: Generated / Not generated grouping ────────── */
.ws-done-group-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 18px 0 10px;
}
.ws-done-group-label:first-child { margin-top: 0; }

.ws-done-group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 10px;
}
.ws-done-group-row .ws-done-group-label { margin: 0; }

.ws-done-generate-all {
  background: linear-gradient(135deg, #5CC5A7, #3DAFD3);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  cursor: pointer;
  transition: opacity 0.12s;
}
.ws-done-generate-all:hover:not(:disabled) { opacity: 0.88; }
.ws-done-generate-all:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

.ws-done-cap-card--locked { opacity: 0.45; }
