/* Assessment Workspace - Premium Dark Theme Refactor */
:root {
  --assessment-primary: #06b6d4;
  /* Matches site --primary */
  --assessment-secondary: #f2c94c;
  /* Matches site --warning for progress */
  --assessment-bg: #030711;
  /* Matches site --background */
  --assessment-workspace-bg: #020408;
  /* Darker variant for työtila */
  --assessment-card: #0c1418;
  /* Matches site --card */
  --assessment-border: rgba(255, 255, 255, 0.08);
  /* Subtle site-style border */
  --assessment-text: #f8fafc;
  /* Matches site --foreground */
  --assessment-muted: #94a3b8;
  /* Matches site --muted-foreground */
}

.assessment-workspace {
  position: relative;
  padding: 60px 0;
  background: var(--assessment-bg);
  border-top: 1px solid var(--assessment-border);
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--assessment-text);
  overflow: hidden;
  z-index: 1;
  /* Clip-path trick for fixed background in a section (works on iOS) */
  clip-path: inset(0);
}

.assessment-workspace > .container {
  width: 100%;
}

.assessment-workspace::before {
  content: "";
  position: fixed;
  /* Relative to viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(3, 7, 17, 0.9), rgba(3, 7, 17, 0.9)),
    url('/assets/img/system-assessment-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  /* Performance optimization */
  will-change: transform;
}

.assessment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--assessment-border);
}

.assessment-title h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(32px, 4vw, 40px);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.assessment-description {
  color: var(--assessment-muted);
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.5;
  margin: 0;
}

.assessment-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--assessment-muted);
  font-size: 0.9rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.meta-item .label {
  opacity: 0.7;
  margin-right: 8px;
}

.meta-item .value {
  color: var(--assessment-primary);
  font-weight: 600;
}

.phase-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.phase-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.phase-dot.active {
  background: var(--assessment-primary);
  border-color: rgba(6, 182, 212, 0.9);
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.35);
}

/* Progress */
.advisor-progress-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.advisor-progress-bar {
  height: 100%;
  background: var(--assessment-primary);
  width: 0%;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Grid Layout */
.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.assessment-main {
  background: var(--assessment-card);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid var(--assessment-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.advisor-messages {
  flex: 1;
  padding: 1.5rem;
  /* Reserve space for the sticky feedback note so it won't cover content. */
  padding-bottom: calc(1.5rem + 64px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-height: 550px;
  background: rgba(0, 0, 0, 0.2);
}

.advisor-feedback-note {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.85rem;
  line-height: 1.35;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.advisor-messages .advisor-feedback-note {
  margin-top: auto;
  position: relative
  bottom: 0;
  z-index: 2;
}

.advisor-input-area .advisor-feedback-note {
  margin-top: 0.75rem;
  position: static;
}

.resume-tools .advisor-feedback-note {
  margin-top: 12px;
  position: static;
}



/* Resume tools: stretch to match assessment-main width */
.assessment-placeholder .resume-tools {
  width: 100%;
  max-width: 720px;
  align-self: stretch;
  box-sizing: border-box;
}

.assessment-placeholder p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Input Area */
.advisor-input-area {
  padding: 1.5rem;
  background: var(--assessment-card);
  border-top: 1px solid var(--assessment-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advisor-textarea {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid var(--assessment-border);
  background: #030711;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  resize: none;
  transition: all 0.2s;
  outline: none;
}

.advisor-textarea:focus {
  border-color: var(--assessment-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.advisor-textarea::placeholder {
  color: var(--assessment-muted);
  opacity: 0.5;
}

.advisor-send {
  background: var(--assessment-primary);
  color: #000;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  align-self: flex-end;
}

.advisor-send:hover {
  background: #08d4f4;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.advisor-send:disabled {
  background: #1e293b;
  color: #475569;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.advisor-back {
  background: rgba(255, 255, 255, 0.05);
  color: var(--assessment-muted);
  border: 1px solid var(--assessment-border);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  margin-right: 12px;
}

.advisor-back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.advisor-back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sidebar */
.assessment-sidebar {
  position: sticky;
  top: 100px;
}

.advisor-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advisor-summary,
.advisor-reason {
  background: var(--assessment-card);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--assessment-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advisor-summary h4,
.advisor-reason h4 {
  margin: 0 0 1.25rem 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--assessment-primary);
  font-weight: 800;
}

#summary-content,
#reason-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--assessment-muted);
}

/* Message Styling */
.message {
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  line-height: 1.6;
  max-width: 95%;
}

.message.user {
  align-self: flex-end;
  background: #1e293b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-right-radius: 2px;
}

.message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border-bottom-left-radius: 4px;
}

.loading-tip-container {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.05);
  border-left: 3px solid var(--assessment-primary);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: opacity 0.4s ease;
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loading-tip-container .tip-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--assessment-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.loading-tip-container .tip-text {
  color: #94a3b8;
  line-height: 1.4;
  font-style: italic;
}

.message.loading-state {
  display: flex;
  flex-direction: column;
}

.message.loading-state>br {
  display: none;
}

.loading-status {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
}

.advisor-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 50%;
  border-top-color: var(--assessment-primary);
  animation: advisor-spin 0.8s linear infinite;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.question-block {
  background: #0b1418 !important;
  border: 1px solid var(--border) !important;
  border-left: 4px solid var(--assessment-primary) !important;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fff;
  line-height: 1.4;
}

.hints-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.2rem;
}

.hint-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(6, 182, 212, 0.1);
  color: var(--assessment-primary);
  border: 1px solid rgba(6, 182, 212, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.hint-btn:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--assessment-primary);
  color: #fff;
}

.hint-btn.selected {
  background: var(--assessment-primary);
  border-color: var(--assessment-primary);
  color: #000;
  font-weight: 700;
}

/* Tags */
.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.option-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(6, 182, 212, 0.1);
  color: var(--assessment-primary);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.remove-tag {
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.remove-tag:hover {
  opacity: 1;
}

/* Final Report */
.final-report {
  max-width: 100% !important;
  padding: 4rem !important;
  background: #0b1418 !important;
  border: 1px solid var(--assessment-primary) !important;
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.1);
}

.final-report h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--assessment-primary);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.report-text {
  margin-top: 1rem;
  color: #e2e8f0;
}

.report-text p {
  margin-bottom: 1.2rem;
}

.report-text br {
  display: block;
  content: "";
  margin-top: 0.5rem;
}

.mermaid-container {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mermaid {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  max-width: 100% !important;
}

.mermaid svg {
  max-width: 100% !important;
  height: auto !important;
  min-height: 200px;
}

/* Mermaid: ensure readable node colors */
.mermaid svg .node rect,
.mermaid svg .node polygon,
.mermaid svg .node path {
  fill: #f8fafc !important;
  stroke: #0f172a !important;
  stroke-width: 1.15px !important;
}

.mermaid svg .node text,
.mermaid svg .label text,
.mermaid svg .edgeLabel text {
  fill: #0f172a !important;
}

.mermaid svg .edgePath path {
  stroke: rgba(15, 23, 42, 0.55) !important;
}

.mermaid svg .arrowheadPath {
  fill: rgba(15, 23, 42, 0.55) !important;
  stroke: rgba(15, 23, 42, 0.55) !important;
}


.mermaid-container h4 {
  margin: 0 0 1rem 0;
  color: var(--assessment-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-enlarge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.btn-enlarge:hover {
  background: var(--assessment-primary);
  color: #000;
}

/* Modal Enlarge View */
.mermaid-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.mermaid-modal .mermaid-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mermaid-modal .mermaid-content svg {
  max-width: 90vw !important;
  max-height: 80vh !important;
}

.mermaid-modal .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}


/* Print Preview Modal (report + diagram) */
.print-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.print-panel {
  width: min(1100px, 96vw);
  max-height: 92vh;
  background: rgba(10, 12, 16, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.print-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.print-title {
  color: #e2e8f0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.print-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.print-body {
  padding: 16px;
  overflow: auto;
}

.print-body .final-report {
  background: rgba(255,255,255,0.02);
}

/* Scrollbar styling */
.advisor-messages::-webkit-scrollbar {
  width: 6px;
}

.advisor-messages::-webkit-scrollbar-track {
  background: transparent;
}

.advisor-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.advisor-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1100px) {
  .assessment-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .assessment-sidebar {
    order: -1;
    position: static;
  }

  .assessment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .assessment-workspace {
    padding: 60px 0;
  }

  .final-report {
    padding: 2.5rem 1.5rem !important;
  }

  .final-report h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mermaid-container {
    padding: 1.5rem 1rem;
    overflow-x: auto;
  }

  .advisor-messages {
    padding: 1.25rem 1rem;
  }

  .message {
    max-width: 100%;
  }
}

/* Contact Form & Turnstile */
.contact-section {
  background: var(--assessment-bg);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .privacy-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--assessment-border);
  font-size: 0.9rem;
  color: var(--assessment-muted);
  line-height: 1.6;
}

.contact-form-container {
  background: var(--assessment-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--assessment-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--assessment-text);
}


.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #030711;
  border: 1px solid var(--assessment-border);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--assessment-primary);
  outline: none;
}

.cf-turnstile {
  margin-bottom: 1.5rem;
  width: 100%;
  overflow-x: auto;
  max-width: 100%;
}

.report-notice {
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  color: var(--assessment-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.full-width {
  width: 100%;
}

.contact-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.btn-report-bridge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  background: var(--assessment-primary);
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-report-bridge:hover {
  background: #08d4f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

.mt-4 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

/* PDF & Watermark Styles */
.pdf-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.pdf-mode .final-report {
  background: #030711 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  padding: 40px !important;
  position: relative;
  overflow: hidden;
}

.pdf-mode .btn-report-bridge,
.pdf-mode .advisor-back,
.pdf-mode .btn-pdf,
.pdf-mode .pdf-ignore {
  display: none !important;
}

.pdf-mode .mermaid-container {
  background: #000 !important;
  border: 1px solid #333 !important;
  page-break-inside: avoid;
}

.pdf-footer {
  display: none;
  font-size: 10px;
  color: #666;
  text-align: center;
  margin-top: 20px;
}

.pdf-mode .pdf-footer {
  display: block;
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--assessment-border);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.btn-pdf:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--assessment-primary);
}

.btn-pdf .icon {
  font-size: 1.2rem;
}


/* Print / Save as PDF (prints only the final report) */
@media print {
  @page { size: A4 landscape; margin: 12mm; }

  html, body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  /* Only when print button is used: print just #print-root */
  body.printing-report > * {
    display: none !important;
  }

  body.printing-report #print-root {
    display: block !important;
  }

  body.printing-report #print-root {
    background: #ffffff !important;
    color: #000000 !important;
  }

  body.printing-report #print-root .final-report {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    color: #000000 !important;
  }

  body.printing-report #print-root .final-report h3 {
    color: #000000 !important;
    text-shadow: none !important;
  }

  body.printing-report #print-root .report-text,
  body.printing-report #print-root .report-text * {
    color: #000000 !important;
  }

  body.printing-report #print-root .btn-pdf,
  body.printing-report #print-root .btn-report-bridge,
  body.printing-report #print-root .advisor-back,
  body.printing-report #print-root .btn-enlarge,
  body.printing-report #print-root .pdf-ignore {
    display: none !important;
  }

  /* Put diagram on its own page and keep it together */
  body.printing-report #print-root .mermaid-container {
    background: #ffffff !important;
    border: 1px solid #dddddd !important;
    page-break-before: always;
    break-before: page;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 8mm !important;
  }

  /* Try to fit the diagram into one landscape page */
  body.printing-report #print-root .mermaid svg {
    width: 100% !important;
    height: auto !important;
    max-height: 165mm !important;
  }
}


/* Inline retry link in error messages */
.inline-retry {
  margin-top: 8px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--assessment-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  cursor: pointer;
}

.inline-retry:hover {
  color: #08d4f4;
}

.inline-retry:focus-visible {
  outline: 2px solid rgba(6, 182, 212, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}


/* Resume UI links: look like normal underlined text links */
.resume-tools .resume-link {
 background: none;
 border: 0;
 padding: 0;
 margin: 0;
 color: var(--assessment-primary);
 text-decoration: underline;
 text-underline-offset: 3px;
 font-weight: 600;
 cursor: pointer;
}

.resume-tools .resume-link:hover {
 color: #08d4f4;
}

.resume-tools .resume-link:focus-visible {
 outline: 2px solid rgba(6, 182, 212, 0.55);
 outline-offset: 3px;
 border-radius: 6px;
}

/* Kanavana feedback note links */
.powered-by {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.advisor-feedback-note a.powered-by {
  text-decoration: none;
}

.advisor-feedback-note a.feedback-link {
  color: rgba(226, 232, 240, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.advisor-feedback-note a.feedback-link:hover {
  color: rgba(242, 201, 76, 0.95);
}


