/* ══════════════════════════════════════════════
   CCA PORTAL — ASSESSMENT
══════════════════════════════════════════════ */

#assessment-screen {
  display: none;
  flex-direction: column;
  height: 100vh;
  background: #f5f5f3;
  font-family: 'DM Sans', sans-serif;
}

/* ── PROGRESS ── */
.assessment-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.progress-text {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  min-width: 120px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.progress-cancel {
  font-size: 11px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.progress-cancel:hover { color: #c62828; }

/* ── BODY ── */
.assessment-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* ── NAV ── */
.assessment-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.nav-btn {
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  color: var(--text-mid);
  white-space: nowrap;
}

.nav-btn:hover { border-color: var(--text-mid); color: var(--text); }

.nav-btn.primary {
  flex: 1;
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  padding: 15px;
  border-radius: 4px;
}

.nav-btn.primary:hover { background: #417C8B; border-color: #417C8B; }
.nav-btn.primary:disabled { background: #ccc; border-color: #ccc; cursor: not-allowed; }
