/* ==========================================================================
   User Dashboard - Train & Hire
   Dashboard-specific styles. Shared panel layout in application.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Profile view
   -------------------------------------------------------------------------- */

.dash-profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f1f3;
}

.dash-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--jobs-card-border);
  flex-shrink: 0;
}

.dash-profile-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8eef4, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  color: #3d5a80;
  flex-shrink: 0;
  border: 3px solid var(--jobs-card-border);
}

.dash-profile-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.1rem;
}

.dash-profile-headline {
  font-size: 0.92rem;
  color: var(--jobs-text-secondary);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.dash-profile-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--jobs-text-muted);
}

.dash-profile-location svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

/* Profile detail rows */
.dash-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.85rem;
}

.dash-detail-row:last-child {
  border-bottom: none;
}

.dash-detail-label {
  color: var(--jobs-text-muted);
  font-weight: 500;
}

.dash-detail-value {
  color: var(--jobs-text-primary);
  font-weight: 600;
  text-align: right;
}

.dash-detail-empty {
  color: var(--jobs-text-muted);
  font-style: italic;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Profile edit form (extends co-form patterns)
   -------------------------------------------------------------------------- */

.dash-form {
  max-width: 640px;
}

.dash-form .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: -0.005em;
}

.dash-form .form-control,
.dash-form .form-select {
  font-family: var(--jobs-font);
  font-size: 0.85rem;
  border-radius: 8px;
  border: 1.5px solid var(--jobs-card-border);
  padding: 0.55rem 0.85rem;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Normalize all form inputs for consistent height, font, and appearance */
.dash-form select,
.dash-form input[type="text"],
.dash-form input[type="number"],
.dash-form input[type="url"],
.dash-form input[type="email"],
.dash-form input[type="date"],
.dash-form input[type="month"],
.dash-form textarea {
  font-family: var(--jobs-font);
  font-size: 0.85rem;
  line-height: 1.4;
  box-sizing: border-box;
}

.dash-form select,
.dash-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]) {
  height: 38px;
}

.dash-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
  padding-right: 2.25rem;
  cursor: pointer;
}

.dash-form .form-control:focus,
.dash-form .form-select:focus {
  border-color: var(--jobs-accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
  background: #fff;
}

.dash-form .form-text {
  font-size: 0.75rem;
  color: var(--jobs-text-muted);
  margin-top: 0.25rem;
}

.dash-form .form-check-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--jobs-text-primary);
}

.dash-form .input-group-text {
  font-family: var(--jobs-font);
  font-size: 0.85rem;
  background: #f1f3f5;
  border: 1.5px solid var(--jobs-card-border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--jobs-text-secondary);
  font-weight: 600;
}

.dash-form .input-group .form-control {
  border-radius: 0 8px 8px 0;
}

.dash-form-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #f0f1f3;
}

.dash-form-section:last-child,
.dash-form-section:has(+ .dash-form-actions) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dash-form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--jobs-text-secondary);
  margin-bottom: 1rem;
}

.dash-form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--jobs-card-border);
  margin-top: 1.75rem;
}

.dash-form-actions .btn-primary {
  font-family: var(--jobs-font);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.55rem 1.5rem;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dash-form-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25);
}

.dash-form-actions .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.dash-form-actions .btn-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  text-decoration: none;
}

.dash-form-actions .btn-link:hover {
  color: var(--jobs-text-primary);
}

/* File upload current indicator */
.dash-file-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--jobs-text-secondary);
}

.dash-file-current svg {
  width: 14px;
  height: 14px;
  stroke: #059669;
  stroke-width: 1.75;
  fill: none;
}

/* --------------------------------------------------------------------------
   Section container
   -------------------------------------------------------------------------- */

.dash-section {
  margin-bottom: 1.75rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .dash-profile-header {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Skills management page
   -------------------------------------------------------------------------- */

.dash-skills-count-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  color: #5b21b6;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  align-self: center;
  letter-spacing: -0.01em;
}

/* Add skill card */
.dash-skills-add-card {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #2563eb;
}

.dash-skills-add-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 0;
}

.dash-skills-add-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-skills-add-icon svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
  stroke-width: 2;
  fill: none;
}

.dash-skills-add-titles {
  min-width: 0;
}

.dash-skills-add-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}

.dash-skills-add-subtitle {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  line-height: 1.4;
  margin: 0;
}

.dash-skills-add-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* Form grid - 4 columns, all inputs aligned */
.dash-skills-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 5.5rem auto;
  gap: 0.75rem;
  align-items: start;
}

.dash-skills-form-grid .dash-skills-form-field {
  display: flex;
  flex-direction: column;
}

.dash-skills-form-grid .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jobs-text-secondary);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-skills-form-spacer-label {
  visibility: hidden;
}

.dash-skills-form-grid .form-select,
.dash-skills-form-grid .form-control {
  height: 38px;
  font-size: 0.84rem;
  padding: 0 0.75rem;
  border-radius: 6px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  box-sizing: border-box;
}

.dash-skills-form-grid .form-select:focus,
.dash-skills-form-grid .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
  outline: none;
}

.dash-skills-add-btn {
  height: 38px;
  padding: 0 1.1rem;
  font-size: 0.82rem;
  border-radius: 6px;
}

.dash-skills-add-hint {
  font-size: 0.74rem;
  color: var(--jobs-text-muted);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

/* Inline edit form row (flex, not grid) */
.dash-skills-form-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dash-skill-edit-form .dash-skills-form-field-proficiency {
  flex: 2;
  min-width: 140px;
}

.dash-skill-edit-form .dash-skills-form-field-years {
  flex: 1;
  min-width: 80px;
  max-width: 120px;
}

.dash-skill-edit-form .dash-skills-form-field-submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Skills collection list */
.dash-skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-skill-entry {
  border-left: 3px solid #e2e5ea;
  border-radius: 8px;
}

/* Proficiency accent borders */
.dash-skill-entry[data-proficiency="beginner"] {
  border-left-color: #38bdf8;
}

.dash-skill-entry[data-proficiency="intermediate"] {
  border-left-color: #3b82f6;
}

.dash-skill-entry[data-proficiency="advanced"] {
  border-left-color: #f59e0b;
}

.dash-skill-entry[data-proficiency="expert"] {
  border-left-color: #ef4444;
}

.dash-skill-content {
  background: #fff;
  border: 1px solid #f0f1f3;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.15rem;
  transition: box-shadow 0.15s ease;
}

.dash-skill-content:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dash-skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-skill-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.dash-skill-years {
  font-size: 0.72rem;
  color: var(--jobs-text-muted);
  font-weight: 600;
  white-space: nowrap;
  background: #f1f3f5;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  letter-spacing: -0.01em;
}

.dash-skill-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-skill-content:hover .dash-skill-actions {
  opacity: 1;
}

.dash-skill-btn {
  font-family: var(--jobs-font);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dash-skill-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dash-skill-btn-edit {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.06);
}

.dash-skill-btn-edit:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.dash-skill-btn-delete {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.06);
}

.dash-skill-btn-delete:hover {
  background: rgba(220, 53, 69, 0.12);
  color: #bb2d3b;
}

/* Inline edit form */
.dash-skill-edit-form {
  padding: 0.75rem 1.15rem 1rem;
  background: #f6f7f9;
  border-top: 1px solid #eef0f3;
  border-radius: 0 0 8px 0;
  margin-left: -3px;
  padding-left: calc(1.15rem + 3px);
}

.dash-skill-edit-form .dash-skills-form-row {
  align-items: flex-end;
}

.dash-skill-edit-form .form-select,
.dash-skill-edit-form .form-control {
  height: 34px;
  font-size: 0.82rem;
  padding: 0 0.7rem;
  border-radius: 6px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  box-sizing: border-box;
}

.dash-skill-edit-form .dash-btn-sm {
  height: 34px;
  padding: 0 0.85rem;
  font-size: 0.78rem;
  box-sizing: border-box;
}

@media (max-width: 575.98px) {
  .dash-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-form-actions .btn-link {
    text-align: center;
  }

  .dash-skills-add-header {
    padding: 1.1rem 1rem 0;
  }

  .dash-skills-add-body {
    padding: 1rem;
  }

  .dash-skills-form-grid {
    grid-template-columns: 1fr;
  }

  .dash-skills-form-spacer-label {
    display: none;
  }

  .dash-skills-add-btn {
    width: 100%;
  }

  .dash-skills-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-skill-edit-form .dash-skills-form-field-years {
    max-width: none;
  }

  .dash-skill-content {
    padding: 0.85rem;
  }

  .dash-skill-actions {
    opacity: 1;
  }

  .dash-skill-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .dash-skill-edit-form {
    padding: 0.75rem 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   Work Experience timeline (dashboard)
   -------------------------------------------------------------------------- */

.dash-experience-timeline {
  position: relative;
  padding-left: 1.75rem;
}

.dash-experience-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #d1d5db, #e5e7eb);
  border-radius: 1px;
}

.dash-experience-entry {
  position: relative;
  padding-bottom: 1.75rem;
}

.dash-experience-entry:last-child {
  padding-bottom: 0;
}

.dash-experience-marker {
  position: absolute;
  left: -1.75rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #3b82f6;
  z-index: 1;
}

.dash-experience-entry:first-child .dash-experience-marker {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dash-experience-content {
  background: #fff;
  border: 1px solid #f0f1f3;
  border-radius: 8px;
  padding: 1rem 1.15rem;
  transition: box-shadow 0.15s ease;
}

.dash-experience-content:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dash-experience-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.dash-experience-info {
  min-width: 0;
}

.dash-experience-title {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-experience-company {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

.dash-experience-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-experience-content:hover .dash-experience-actions {
  opacity: 1;
}

.dash-experience-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.dash-experience-dates {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-experience-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--jobs-text-muted);
  font-weight: 500;
}

.dash-experience-location svg {
  width: 13px;
  height: 13px;
}

.dash-experience-description {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.65;
}

.dash-experience-description span {
  display: block;
  margin-bottom: 0.25rem;
}

.dash-experience-description span:last-child {
  margin-bottom: 0;
}

/* Empty state */
.dash-experience-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-experience-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-experience-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #3b82f6;
}

.dash-experience-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-experience-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

@media (max-width: 575.98px) {
  .dash-experience-timeline {
    padding-left: 1.25rem;
  }

  .dash-experience-marker {
    left: -1.25rem;
    width: 12px;
    height: 12px;
  }

  .dash-experience-content {
    padding: 0.85rem;
  }

  .dash-experience-actions {
    opacity: 1;
  }

  .dash-experience-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-experience-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* --------------------------------------------------------------------------
   Education list (dashboard)
   -------------------------------------------------------------------------- */

.dash-education-list-wrapper {
  padding: 0.5rem 0.25rem;
}

.dash-education-entry {
  position: relative;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-education-entry:last-child {
  border-bottom: none;
}

.dash-education-entry:hover {
  background: #f9fafb;
}

.dash-education-marker {
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 4px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: #818cf8;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-education-entry:hover .dash-education-marker {
  opacity: 1;
}

.dash-education-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dash-education-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-education-info {
  min-width: 0;
}

.dash-education-degree {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-education-institution {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

.dash-education-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-education-entry:hover .dash-education-actions {
  opacity: 1;
}

.dash-education-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.dash-education-year {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-education-year svg {
  width: 13px;
  height: 13px;
}

/* Education empty state */
.dash-education-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-education-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-education-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #6366f1;
}

.dash-education-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-education-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

/* Shared education list partial styles */
.education-list {
  padding: 0;
}

.education-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f1f3;
}

.education-entry:last-child {
  border-bottom: none;
}

.education-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e7ff;
  border: 2px solid #818cf8;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.education-content {
  min-width: 0;
}

.education-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.education-degree {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--jobs-text-primary, #1a1d23);
  letter-spacing: -0.01em;
}

.education-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jobs-text-muted, #6b7280);
  white-space: nowrap;
}

.education-institution {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--jobs-text-secondary, #4b5563);
  margin-top: 0.1rem;
}

.education-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--jobs-text-muted, #6b7280);
}

.education-empty-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-empty-icon svg {
  width: 22px;
  height: 22px;
  stroke: #9ca3af;
}

.education-empty p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .dash-education-actions {
    opacity: 1;
  }

  .dash-education-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-education-entry {
    padding: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   Credentials list (dashboard)
   -------------------------------------------------------------------------- */

.dash-credential-list-wrapper {
  padding: 0.5rem 0.25rem;
}

.dash-credential-entry {
  position: relative;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-credential-entry:last-child {
  border-bottom: none;
}

.dash-credential-entry:hover {
  background: #f9fafb;
}

.dash-credential-marker {
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 4px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: #6366f1;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-credential-entry:hover .dash-credential-marker {
  opacity: 1;
}

.dash-credential-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dash-credential-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-credential-info {
  min-width: 0;
}

.dash-credential-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-credential-issuer {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

.dash-credential-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-credential-entry:hover .dash-credential-actions {
  opacity: 1;
}

.dash-credential-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
  flex-wrap: wrap;
}

.dash-credential-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-credential-date svg {
  width: 13px;
  height: 13px;
}

/* Status badges */
.dash-credential-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.dash-credential-status-active {
  background: #d1fae5;
  color: #065f46;
}

.dash-credential-status-expired {
  background: #fee2e2;
  color: #991b1b;
}

.dash-credential-status-warning {
  background: #fef3c7;
  color: #92400e;
}

.dash-credential-status-no-expiry {
  background: #f3f4f6;
  color: #6b7280;
}

/* Verify link */
.dash-credential-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-credential-link:hover {
  color: #0b5ed7;
}

.dash-credential-link svg {
  width: 12px;
  height: 12px;
}

/* Credential empty state */
.dash-credential-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-credential-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-credential-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #6366f1;
}

.dash-credential-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-credential-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

@media (max-width: 575.98px) {
  .dash-credential-actions {
    opacity: 1;
  }

  .dash-credential-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-credential-entry {
    padding: 0.85rem;
  }

  .dash-credential-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* --------------------------------------------------------------------------
   Saved jobs list (dashboard)
   -------------------------------------------------------------------------- */

.dash-saved-jobs-list {
  padding: 0.5rem 0.25rem;
}

.dash-saved-job-entry {
  position: relative;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-saved-job-entry:last-child {
  border-bottom: none;
}

.dash-saved-job-entry:hover {
  background: #f9fafb;
}

.dash-saved-job-marker {
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 4px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: #3b82f6;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-saved-job-entry:hover .dash-saved-job-marker {
  opacity: 1;
}

.dash-saved-job-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dash-saved-job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-saved-job-info {
  min-width: 0;
}

.dash-saved-job-title {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-saved-job-title a {
  color: var(--jobs-text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-saved-job-title a:hover {
  color: var(--jobs-accent);
}

.dash-saved-job-company {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

.dash-saved-job-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-saved-job-entry:hover .dash-saved-job-actions {
  opacity: 1;
}

.dash-saved-job-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.15rem;
  flex-wrap: wrap;
}

.dash-saved-job-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: #eef1f5;
  color: #475569;
  letter-spacing: 0.01em;
}

.dash-saved-job-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-saved-job-date svg {
  width: 13px;
  height: 13px;
}

/* Saved jobs empty state */
.dash-saved-jobs-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-saved-jobs-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-saved-jobs-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #3b82f6;
}

.dash-saved-jobs-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-saved-jobs-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

@media (max-width: 575.98px) {
  .dash-saved-job-actions {
    opacity: 1;
  }

  .dash-saved-job-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-saved-job-entry {
    padding: 0.85rem;
  }

  .dash-saved-job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   Applications list (dashboard/applications)
   ========================================================================== */

.dash-applications-list {
  padding: 0.5rem 0.25rem;
}

.dash-application-entry {
  position: relative;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-application-entry:last-child {
  border-bottom: none;
}

.dash-application-entry:hover {
  background: #f9fafb;
}

.dash-application-marker {
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 4px;
  height: 28px;
  border-radius: 0 3px 3px 0;
  background: #3b82f6;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-application-entry:hover .dash-application-marker {
  opacity: 1;
}

.dash-application-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dash-application-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-application-info {
  min-width: 0;
}

.dash-application-title {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-application-title a {
  color: var(--jobs-text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-application-title a:hover {
  color: var(--jobs-accent);
}

.dash-application-company {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

.dash-application-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-application-entry:hover .dash-application-actions {
  opacity: 1;
}

.dash-application-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.15rem;
  flex-wrap: wrap;
}

/* Application status badges */
.dash-application-status {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.dash-application-status-submitted {
  background: #dbeafe;
  color: #1e40af;
}

.dash-application-status-reviewing {
  background: #fef3c7;
  color: #92400e;
}

.dash-application-status-interviewed {
  background: #ede9fe;
  color: #5b21b6;
}

.dash-application-status-offered {
  background: #d1fae5;
  color: #065f46;
}

.dash-application-status-rejected {
  background: #fee2e2;
  color: #991b1b;
}

.dash-application-status-withdrawn {
  background: #f1f5f9;
  color: #475569;
}

.dash-application-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-application-date svg {
  width: 13px;
  height: 13px;
}

/* Applications empty state */
.dash-applications-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-applications-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-applications-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #3b82f6;
}

.dash-applications-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-applications-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

/* Application cover letter (show page) */
.dash-application-cover-letter {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--jobs-text-secondary);
  white-space: pre-wrap;
}

.dash-application-cover-letter p {
  margin-bottom: 0.75rem;
}

.dash-application-cover-letter p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .dash-application-actions {
    opacity: 1;
  }

  .dash-application-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-application-entry {
    padding: 0.85rem;
  }

  .dash-application-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   "What to learn next" widget (dashboard overview)
   ========================================================================== */

.dash-learn-widget {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 12px;
  margin-top: 1.5rem;
  overflow: hidden;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-learn-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f1f3;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.dash-learn-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-learn-icon svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
}

.dash-learn-title {
  font-family: var(--jobs-font);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.dash-learn-subtitle {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Recommendation list items
   -------------------------------------------------------------------------- */

.dash-learn-list {
  padding: 0;
}

.dash-learn-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-learn-item:last-child {
  border-bottom: none;
}

.dash-learn-item:hover {
  background: #f9fafb;
}

.dash-learn-item-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.dash-learn-dot-missing {
  background: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.dash-learn-dot-partial {
  background: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.dash-learn-item-body {
  flex: 1;
  min-width: 0;
}

.dash-learn-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-learn-item-info {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.dash-learn-item-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
}

.dash-learn-item-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-learn-item-name a:hover {
  color: var(--jobs-accent);
}

.dash-learn-item-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.12rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dash-learn-tag-missing {
  background: #fee2e2;
  color: #991b1b;
}

.dash-learn-tag-partial {
  background: #fef3c7;
  color: #92400e;
}

.dash-learn-item-detail {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  margin-top: 0.2rem;
  line-height: 1.5;
  font-weight: 500;
}

.dash-learn-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.dash-learn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--jobs-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--jobs-accent, #0d6efd);
  background: rgba(13, 110, 253, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.dash-learn-cta:hover {
  background: rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.dash-learn-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  flex-shrink: 0;
}

.dash-learn-cta-secondary {
  color: var(--jobs-text-secondary);
  background: #f3f4f6;
}

.dash-learn-cta-secondary:hover {
  background: #e5e7eb;
  color: var(--jobs-text-primary);
}

/* --------------------------------------------------------------------------
   Widget footer with "View all" link
   -------------------------------------------------------------------------- */

.dash-learn-footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid #f0f1f3;
  text-align: center;
  background: #fafbfc;
}

.dash-learn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--jobs-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-learn-view-all:hover {
  color: #0b5ed7;
}

.dash-learn-view-all svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* --------------------------------------------------------------------------
   Empty states
   -------------------------------------------------------------------------- */

.dash-learn-empty {
  text-align: center;
  padding: 2.5rem 2rem;
}

.dash-learn-empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  background: #f1f3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-learn-empty-icon svg {
  width: 22px;
  height: 22px;
  color: #9ca3af;
}

.dash-learn-empty-success {
  background: #d1fae5;
}

.dash-learn-empty-success svg {
  color: #059669;
}

.dash-learn-empty-text {
  font-size: 0.85rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.dash-learn-empty-text-success {
  color: #059669;
  font-weight: 600;
}

.dash-learn-empty-hint {
  font-size: 0.78rem;
  color: var(--jobs-text-muted);
  margin-bottom: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Responsive - learn widget
   -------------------------------------------------------------------------- */

@media (max-width: 575.98px) {
  .dash-learn-header {
    padding: 1rem 1.15rem;
  }

  .dash-learn-item {
    padding: 0.75rem 1.15rem;
  }

  .dash-learn-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .dash-learn-item-actions {
    flex-wrap: wrap;
  }

  .dash-learn-footer {
    padding: 0.75rem 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   Notifications (dashboard)
   -------------------------------------------------------------------------- */

.dash-notification-bulk-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.dash-notifications-list {
  padding: 0;
}

.dash-notification-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-notification-entry:last-child {
  border-bottom: none;
}

.dash-notification-entry:hover {
  background: #f9fafb;
}

.dash-notification-unread {
  background: #f0f4ff;
}

.dash-notification-unread:hover {
  background: #e8eeff;
}

.dash-notification-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.dash-notification-unread .dash-notification-indicator {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dash-notification-content {
  flex: 1;
  min-width: 0;
}

.dash-notification-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-notification-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dash-notification-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.dash-notification-title a {
  color: var(--jobs-text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-notification-title a:hover {
  color: var(--jobs-accent, #0d6efd);
}

.dash-notification-body {
  font-size: 0.82rem;
  color: var(--jobs-text-secondary);
  line-height: 1.55;
}

.dash-notification-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.dash-notification-entry:hover .dash-notification-actions {
  opacity: 1;
}

.dash-notification-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.dash-notification-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--jobs-text-muted);
}

.dash-notification-time svg {
  width: 13px;
  height: 13px;
}

.dash-notification-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dash-notification-status-read {
  background: #f3f4f6;
  color: #6b7280;
}

.dash-notification-status-unread {
  background: #dbeafe;
  color: #2563eb;
}

/* Notification empty state */
.dash-notifications-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-notifications-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-notifications-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #3b82f6;
}

.dash-notifications-empty-text {
  font-size: 0.88rem;
  color: var(--jobs-text-secondary);
  max-width: 420px;
  margin: 0 auto 0.25rem;
  line-height: 1.6;
}

.dash-notifications-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-muted);
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .dash-notification-actions {
    opacity: 1;
  }

  .dash-notification-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dash-notification-bulk-actions {
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------------------------------
   Assessments list (dashboard)
   -------------------------------------------------------------------------- */

.dash-assess-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-assess-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-assess-entry:last-child {
  border-bottom: none;
}

.dash-assess-entry:hover {
  background: #fafbfc;
}

.dash-assess-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-assess-indicator svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.dash-assess-indicator-pass {
  background: #ecfdf5;
  color: #059669;
}

.dash-assess-indicator-fail {
  background: #fef2f2;
  color: #dc2626;
}

.dash-assess-indicator-progress {
  background: #eff6ff;
  color: #2563eb;
}

.dash-assess-indicator-timeout {
  background: #fffbeb;
  color: #d97706;
}

.dash-assess-content {
  flex: 1;
  min-width: 0;
}

.dash-assess-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dash-assess-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1d23;
  text-decoration: none;
  margin: 0;
}

.dash-assess-title:hover {
  color: #0d6efd;
}

.dash-assess-skill {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.dash-assess-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: #9ca3af;
  flex-wrap: wrap;
}

.dash-assess-score {
  font-weight: 600;
  font-size: 0.78rem;
}

.dash-assess-score-pass {
  color: #059669;
}

.dash-assess-score-fail {
  color: #dc2626;
}

.dash-assess-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
}

.dash-assess-status-passed {
  background: #ecfdf5;
  color: #059669;
}

.dash-assess-status-failed {
  background: #fef2f2;
  color: #dc2626;
}

.dash-assess-status-in_progress {
  background: #eff6ff;
  color: #2563eb;
}

.dash-assess-status-timed_out {
  background: #fffbeb;
  color: #d97706;
}

.dash-assess-date svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 2px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.dash-assess-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-assess-cooldown {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #d97706;
  background: #fffbeb;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
}

.dash-assess-cooldown svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.dash-assess-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-assess-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-assess-empty-icon svg {
  width: 26px;
  height: 26px;
  stroke: #3b82f6;
  fill: none;
  stroke-width: 1.5;
}

.dash-assess-empty-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-assess-empty-hint {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.dash-assess-difficulty {
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
}

/* --------------------------------------------------------------------------
   Saved jobs quick-action buttons
   -------------------------------------------------------------------------- */

.dash-saved-job-actions-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.dash-saved-job-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--jobs-font);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.dash-saved-job-quick-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.dash-saved-job-quick-btn-analyze {
  color: var(--jobs-accent, #0d6efd);
  background: rgba(13, 110, 253, 0.06);
}

.dash-saved-job-quick-btn-analyze:hover {
  background: rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.dash-saved-job-quick-btn-apply {
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.dash-saved-job-quick-btn-apply:hover {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
}

.dash-saved-job-quick-btn-remove {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.06);
}

.dash-saved-job-quick-btn-remove:hover {
  background: rgba(220, 53, 69, 0.12);
  color: #bb2d3b;
}

@media (max-width: 575.98px) {
  .dash-saved-job-actions-row {
    flex-wrap: wrap;
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Followed companies
   -------------------------------------------------------------------------- */

.dash-followed-list {
  padding: 0.5rem 0.25rem;
}

.dash-followed-entry {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-followed-entry:last-child {
  border-bottom: none;
}

.dash-followed-entry:hover {
  background: #f9fafb;
}

.dash-followed-entry:hover .dash-saved-job-marker {
  opacity: 1;
}

.dash-followed-logo {
  flex-shrink: 0;
}

.dash-followed-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.dash-followed-logo-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8eef4, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #3d5a80;
  border: 1px solid #e5e7eb;
}

.dash-followed-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #92400e;
}

.dash-followed-jobs-badge {
  background: #ecfdf5;
  color: #065f46;
}

@media (max-width: 575.98px) {
  .dash-followed-entry {
    padding: 0.85rem;
    gap: 0.65rem;
  }
}

/* --------------------------------------------------------------------------
   Application status-colored markers
   -------------------------------------------------------------------------- */

.dash-application-marker-submitted { background: #3b82f6; }
.dash-application-marker-reviewing { background: #d97706; }
.dash-application-marker-interviewed { background: #8b5cf6; }
.dash-application-marker-offered { background: #059669; }
.dash-application-marker-rejected { background: #dc2626; }
.dash-application-marker-withdrawn { background: #6b7280; }

/* --------------------------------------------------------------------------
   Application detail timeline
   -------------------------------------------------------------------------- */

.dash-app-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0.5rem 0;
}

.dash-app-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  min-width: 0;
}

.dash-app-timeline-step:last-child {
  flex: 0 0 auto;
}

.dash-app-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid #d1d5db;
  background: #fff;
  transition: all 0.2s ease;
}

.dash-app-timeline-dot svg {
  width: 14px;
  height: 14px;
}

.dash-app-timeline-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.dash-app-timeline-step-completed .dash-app-timeline-dot {
  background: #059669;
  border-color: #059669;
  color: #fff;
}

.dash-app-timeline-step-current .dash-app-timeline-dot {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.dash-app-timeline-step-inactive .dash-app-timeline-dot {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.dash-app-timeline-dot-terminal {
  background: #fee2e2;
  border-color: #dc2626;
  color: #dc2626;
}

.dash-app-timeline-line {
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  z-index: 0;
}

.dash-app-timeline-line-filled {
  background: #059669;
}

.dash-app-timeline-line-empty {
  background: #d1d5db;
}

.dash-app-timeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--jobs-text-muted);
  margin-top: 0.5rem;
  text-align: center;
  white-space: nowrap;
}

.dash-app-timeline-step-completed .dash-app-timeline-label {
  color: #059669;
}

.dash-app-timeline-step-current .dash-app-timeline-label {
  color: #2563eb;
  font-weight: 700;
}

.dash-app-timeline-step-terminal .dash-app-timeline-label {
  color: #dc2626;
  font-weight: 700;
}

/* Application detail navigation */
.dash-app-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f1f3;
}

@media (max-width: 575.98px) {
  .dash-app-timeline {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .dash-app-timeline-step {
    flex: 0 0 auto;
  }

  .dash-app-timeline-line {
    display: none;
  }

  .dash-app-nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-app-nav-actions a {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Application messages (conversation thread)
   -------------------------------------------------------------------------- */

.dash-message-thread {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-height: 480px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.dash-message {
  max-width: 82%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  animation: fadeSlideIn 0.2s ease-out;
}

.dash-message-received {
  align-self: flex-start;
  background: #f3f4f6;
  border-bottom-left-radius: 3px;
}

.dash-message-sent {
  align-self: flex-end;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-bottom-right-radius: 3px;
}

.dash-message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  gap: 0.75rem;
}

.dash-message-sender {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--th-text);
}

.dash-message-time {
  font-size: 0.65rem;
  color: var(--th-text-muted);
  white-space: nowrap;
}

.dash-message-body {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #374151;
}

.dash-message-body p {
  margin: 0;
}

.dash-message-body p + p {
  margin-top: 0.35rem;
}

.dash-message-read {
  font-size: 0.62rem;
  color: var(--th-text-muted);
  text-align: right;
  margin-top: 0.15rem;
}

.dash-message-empty {
  font-size: 0.85rem;
  color: var(--th-text-muted);
  margin: 0;
}

/* Message compose form */
.dash-message-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--th-border-light);
}

.dash-message-textarea {
  font-family: var(--th-font);
  font-size: 0.85rem;
  display: block;
  width: 100%;
  border: 1.5px solid var(--th-border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  background: var(--th-bg-subtle);
  resize: vertical;
  min-height: 80px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.dash-message-textarea:focus {
  border-color: var(--th-accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
  background: #fff;
  outline: none;
}

.dash-message-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.dash-message-form-hint {
  font-size: 0.72rem;
  color: var(--th-text-muted);
}

/* Unread message indicator on application index cards */
.dash-unread-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.dash-unread-badge svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ==========================================================================
   Dashboard overview command center
   ========================================================================== */

/* --------------------------------------------------------------------------
   Profile completion card + quick actions row
   -------------------------------------------------------------------------- */

.dash-overview-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.dash-completion-card {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-completion-ring-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.dash-completion-ring {
  width: 72px;
  height: 72px;
  display: block;
}

.dash-completion-ring-fill {
  stroke: #2563eb;
  transition: stroke-dasharray 0.6s ease;
}

.dash-completion-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  letter-spacing: -0.03em;
}

.dash-completion-info {
  min-width: 0;
}

.dash-completion-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

.dash-completion-detail {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 0.45rem;
}

.dash-completion-next-step {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  background: rgba(13, 110, 253, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.dash-completion-next-step:hover {
  background: rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.dash-completion-next-step svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Quick action cards */
.dash-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dash-quick-action {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s ease;
  animation: fadeSlideIn 0.25s ease-out both;
}

.dash-quick-action:nth-child(1) { animation-delay: 0.03s; }
.dash-quick-action:nth-child(2) { animation-delay: 0.06s; }
.dash-quick-action:nth-child(3) { animation-delay: 0.09s; }
.dash-quick-action:nth-child(4) { animation-delay: 0.12s; }
.dash-quick-action:nth-child(5) { animation-delay: 0.15s; }

.dash-quick-action:hover {
  box-shadow: var(--jobs-card-hover-shadow);
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

.dash-quick-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-quick-action-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

.dash-quick-action-icon-blue { background: #dbeafe; color: #2563eb; }
.dash-quick-action-icon-amber { background: #fef3c7; color: #d97706; }
.dash-quick-action-icon-green { background: #d1fae5; color: #059669; }
.dash-quick-action-icon-purple { background: #e0e7ff; color: #6366f1; }
.dash-quick-action-icon-teal { background: #ccfbf1; color: #0d9488; }

.dash-quick-action-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Two-column overview widgets
   -------------------------------------------------------------------------- */

.dash-overview-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  min-width: 0;
}

.dash-overview-col {
  min-width: 0;
}

.dash-overview-widget {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-overview-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
}

.dash-overview-widget-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jobs-text-secondary);
  margin-bottom: 0;
}

.dash-overview-widget-title svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  opacity: 0.6;
}

.dash-overview-widget-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-overview-widget-link:hover {
  color: #0b5ed7;
}

.dash-overview-widget-body {
  padding: 0;
  min-width: 0;
}

.dash-overview-widget-empty {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--jobs-text-muted);
}

.dash-overview-widget-empty svg {
  width: 32px;
  height: 32px;
  stroke: #d1d5db;
  stroke-width: 1.5;
  fill: none;
  margin: 0 auto 0.65rem;
  display: block;
}

.dash-overview-widget-empty p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.dash-overview-widget-empty a {
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  font-weight: 600;
}

.dash-overview-widget-empty a:hover {
  color: #0b5ed7;
}

/* Active enrollment items */
.dash-enrollment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.dash-enrollment-item:last-child {
  border-bottom: none;
}

.dash-enrollment-item:hover {
  background: #f9fafb;
  color: inherit;
  text-decoration: none;
}

.dash-enrollment-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.dash-enrollment-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-enrollment-skill {
  font-size: 0.72rem;
  color: var(--jobs-text-muted);
  font-weight: 500;
}

.dash-enrollment-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 100px;
}

.dash-enrollment-bar {
  flex: 1;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.dash-enrollment-bar-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.dash-enrollment-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--jobs-text-secondary);
  min-width: 28px;
  text-align: right;
}

/* Mini notification items in overview widget */
.dash-mini-notification {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem 1.15rem;
  border-bottom: 1px solid #f0f1f3;
}

.dash-mini-notification:last-child {
  border-bottom: none;
}

.dash-mini-notification-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.dash-mini-notification-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.dash-mini-notification-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--jobs-text-primary);
  letter-spacing: -0.005em;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.dash-mini-notification-title:hover {
  color: var(--jobs-accent, #0d6efd);
}

.dash-mini-notification-time {
  font-size: 0.72rem;
  color: var(--jobs-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Shared button system
   -------------------------------------------------------------------------- */

.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--jobs-font);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 0.55rem 1.25rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.dash-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  flex-shrink: 0;
}

.dash-btn-sm {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
}

.dash-btn-sm svg {
  width: 13px;
  height: 13px;
}

.dash-btn-primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.dash-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  color: #fff;
}

.dash-btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.dash-btn-outline {
  background: #fff;
  color: var(--jobs-text-secondary);
  border-color: var(--jobs-card-border);
}

.dash-btn-outline:hover {
  background: #f9fafb;
  color: var(--jobs-text-primary);
  border-color: #d1d5db;
}

.dash-btn-danger-outline {
  background: #fff;
  color: #dc3545;
  border-color: #fecaca;
}

.dash-btn-danger-outline:hover {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #dc3545;
}

.dash-btn-ghost {
  background: transparent;
  color: var(--jobs-text-secondary);
  border-color: transparent;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.dash-btn-ghost:hover {
  color: var(--jobs-text-primary);
  background: #f3f4f6;
}

/* --------------------------------------------------------------------------
   Profile empty field prompts
   -------------------------------------------------------------------------- */

.dash-empty-field {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
}

.dash-empty-field svg {
  width: 20px;
  height: 20px;
  stroke: #9ca3af;
  stroke-width: 1.75;
  fill: none;
  flex-shrink: 0;
}

.dash-empty-field-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin: 0;
}

.dash-empty-field-hint {
  font-size: 0.78rem;
  color: var(--jobs-text-muted);
  margin: 0.1rem 0 0 0;
}

.dash-empty-field-action {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--jobs-accent, #0d6efd);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.dash-empty-field-action:hover {
  color: #0b5ed7;
}

.dash-profile-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #374151;
}

/* --------------------------------------------------------------------------
   Consistent empty states
   -------------------------------------------------------------------------- */

.dash-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-empty-state-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-empty-state-icon svg {
  width: 26px;
  height: 26px;
}

.dash-empty-state-icon-blue { background: #dbeafe; }
.dash-empty-state-icon-blue svg { stroke: #3b82f6; }
.dash-empty-state-icon-amber { background: #fef3c7; }
.dash-empty-state-icon-amber svg { stroke: #d97706; }
.dash-empty-state-icon-green { background: #d1fae5; }
.dash-empty-state-icon-green svg { stroke: #059669; }
.dash-empty-state-icon-purple { background: #e0e7ff; }
.dash-empty-state-icon-purple svg { stroke: #6366f1; }
.dash-empty-state-icon-rose { background: #fee2e2; }
.dash-empty-state-icon-rose svg { stroke: #dc2626; }

.dash-empty-state-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--jobs-text-primary);
  margin-bottom: 0.25rem;
}

.dash-empty-state-text {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  max-width: 400px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Tabs
   -------------------------------------------------------------------------- */

.dash-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--jobs-card-border);
  margin-bottom: 1.5rem;
}

.dash-tab {
  font-family: var(--jobs-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jobs-text-secondary);
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.15s ease;
}

.dash-tab:hover {
  color: var(--jobs-text-primary);
}

.dash-tab.active {
  color: var(--jobs-accent);
  border-bottom-color: var(--jobs-accent);
}

/* --------------------------------------------------------------------------
   Sidebar active indicator refinements
   -------------------------------------------------------------------------- */

.dash-nav-link.active {
  position: relative;
}

.dash-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: #3b82f6;
  border-radius: 0 3px 3px 0;
}

/* --------------------------------------------------------------------------
   Confirm modal
   -------------------------------------------------------------------------- */

.dash-confirm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.dash-confirm-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.dash-confirm-modal {
  background: #fff;
  max-width: 400px;
  width: calc(100% - 2rem);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.dash-confirm-backdrop.active .dash-confirm-modal.active {
  transform: scale(1);
  opacity: 1;
}

.dash-confirm-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #d97706;
}

.dash-confirm-icon svg {
  width: 24px;
  height: 24px;
}

.dash-confirm-title {
  font-family: var(--jobs-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1d23;
  margin-bottom: 0.5rem;
}

.dash-confirm-message {
  font-size: 0.9rem;
  color: #5f6368;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.dash-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dash-confirm-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jobs-font);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 0.55rem 1.25rem;
  letter-spacing: -0.01em;
  border: 1.5px solid var(--jobs-card-border);
  cursor: pointer;
  transition: all 0.18s ease;
  background: #fff;
  color: var(--jobs-text-secondary);
}

.dash-confirm-cancel:hover {
  background: #f9fafb;
  color: var(--jobs-text-primary);
  border-color: #d1d5db;
}

.dash-confirm-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jobs-font);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 0.55rem 1.25rem;
  letter-spacing: -0.01em;
  border: 1.5px solid #dc3545;
  cursor: pointer;
  transition: all 0.18s ease;
  background: #dc3545;
  color: #fff;
}

.dash-confirm-submit:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220, 53, 69, 0.25);
}

.dash-confirm-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Hire CTA card (profile page)
   -------------------------------------------------------------------------- */

.dash-hire-cta {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border-color: #99f6e4;
}

.dash-hire-cta-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-hire-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ccfbf1;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-hire-cta-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

.dash-hire-cta-text {
  flex: 1;
  min-width: 0;
}

.dash-hire-cta-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  margin: 0 0 0.2rem;
}

.dash-hire-cta-body {
  font-size: 0.84rem;
  color: var(--jobs-text-secondary);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 575.98px) {
  .dash-hire-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Responsive - overview widgets
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  .dash-overview-top {
    grid-template-columns: 1fr;
  }

  .dash-overview-columns {
    grid-template-columns: 1fr;
  }

  .dash-nav-link.active::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .dash-quick-actions {
    grid-template-columns: 1fr;
  }

  .dash-completion-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .dash-enrollment-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .dash-enrollment-progress {
    width: 100%;
  }

  .dash-empty-field {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .dash-empty-field-action {
    margin-left: 0;
  }
}

/* --------------------------------------------------------------------------
   Interview scheduling (seeker side)
   -------------------------------------------------------------------------- */

.dash-interview-instructions {
  font-size: 0.85rem;
  color: var(--jobs-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Proposed time slot selection cards */

.dash-interview-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-interview-slot-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--th-border);
  border-radius: 10px;
  background: #fff;
  transition: all 0.18s ease;
}

.dash-interview-slot-option:hover {
  border-color: #c7d7f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dash-interview-slot-option-date {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
}

.dash-interview-slot-option-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--jobs-text-secondary);
  margin-top: 0.15rem;
}

.dash-interview-slot-option-duration {
  font-size: 0.72rem;
  color: var(--jobs-text-muted);
  margin-top: 0.1rem;
}

/* Confirmed interview display */

.dash-interview-confirmed-slot {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 10px;
}

.dash-interview-confirmed-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-interview-confirmed-icon svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
}

.dash-interview-confirmed-date {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
}

.dash-interview-confirmed-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jobs-text-secondary);
  margin-top: 0.15rem;
}

.dash-interview-confirmed-duration {
  font-size: 0.72rem;
  color: var(--jobs-text-muted);
  margin-top: 0.1rem;
}

/* Cancelled state */

.dash-interview-cancelled {
  text-align: center;
  padding: 2rem 1rem;
}

.dash-interview-cancelled-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.dash-interview-cancelled-icon svg {
  width: 24px;
  height: 24px;
  stroke: #6b7280;
}

.dash-interview-cancelled-text {
  font-size: 0.88rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 1.25rem;
}

/* Interview section on application show page */

.dash-interview-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.dash-interview-banner-proposed {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
}

.dash-interview-banner-confirmed {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
}

.dash-interview-banner-completed {
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
}

.dash-interview-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-interview-banner-proposed .dash-interview-banner-icon {
  background: #fef3c7;
  color: #d97706;
}

.dash-interview-banner-confirmed .dash-interview-banner-icon {
  background: #dbeafe;
  color: #2563eb;
}

.dash-interview-banner-completed .dash-interview-banner-icon {
  background: #d1fae5;
  color: #059669;
}

.dash-interview-banner-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dash-interview-banner-info {
  flex: 1;
  min-width: 0;
}

.dash-interview-banner-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
}

.dash-interview-banner-meta {
  font-size: 0.72rem;
  color: var(--jobs-text-secondary);
  margin-top: 0.1rem;
}

@media (max-width: 575.98px) {
  .dash-interview-slot-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .dash-interview-confirmed-slot {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ==========================================================================
   Career Pathways - Seeker Dashboard
   ========================================================================== */

/* --------------------------------------------------------------------------
   Next Best Skills banner
   -------------------------------------------------------------------------- */

.dash-cpw-skills-banner {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  animation: fadeSlideIn 0.25s ease-out;
}

.dash-cpw-skills-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f1f3;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.dash-cpw-skills-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-cpw-skills-icon svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
}

.dash-cpw-skills-title {
  font-family: var(--jobs-font);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.dash-cpw-skills-subtitle {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
}

.dash-cpw-skills-list {
  padding: 0;
}

.dash-cpw-skill-item {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #f0f1f3;
  transition: background 0.15s ease;
}

.dash-cpw-skill-item:last-child {
  border-bottom: none;
}

.dash-cpw-skill-item:hover {
  background: #f9fafb;
}

.dash-cpw-skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-cpw-skill-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
}

.dash-cpw-skill-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
}

.dash-cpw-skill-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-cpw-skill-name a:hover {
  color: var(--jobs-accent);
}

.dash-cpw-skill-unlocks {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.12rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #ede9fe;
  color: #5b21b6;
}

.dash-cpw-skill-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.dash-cpw-skill-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--jobs-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--jobs-accent, #0d6efd);
  background: rgba(13, 110, 253, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.dash-cpw-skill-learn-link:hover {
  background: rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.dash-cpw-skill-learn-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.dash-cpw-section {
  margin-bottom: 2rem;
}

.dash-cpw-section-heading {
  font-family: var(--jobs-font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jobs-text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* --------------------------------------------------------------------------
   Pathway cards (active progress)
   -------------------------------------------------------------------------- */

.dash-cpw-pathway-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-cpw-pathway-card {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  animation: fadeSlideIn 0.25s ease-out both;
  transition: box-shadow 0.18s ease;
}

.dash-cpw-pathway-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.dash-cpw-pathway-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.dash-cpw-pathway-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
}

.dash-cpw-pathway-name {
  font-family: var(--jobs-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.dash-cpw-industry-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #e0e7ff;
  color: #3730a3;
  white-space: nowrap;
}

.dash-cpw-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jobs-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Progress bar
   -------------------------------------------------------------------------- */

.dash-cpw-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.dash-cpw-progress-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.dash-cpw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.dash-cpw-progress-complete {
  background: linear-gradient(90deg, #059669, #10b981);
}

.dash-cpw-progress-pct {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--jobs-text-primary);
  min-width: 36px;
  text-align: right;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Step progression (current -> next)
   -------------------------------------------------------------------------- */

.dash-cpw-steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f0f1f3;
  overflow: hidden;
}

.dash-cpw-step-block {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  min-width: 0;
}

.dash-cpw-step-current {
  background: rgba(37, 99, 235, 0.03);
}

.dash-cpw-step-next {
  background: rgba(245, 158, 11, 0.03);
}

.dash-cpw-step-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #d1fae5;
  margin-top: 0.1rem;
}

.dash-cpw-step-marker svg {
  width: 15px;
  height: 15px;
  stroke: #059669;
}

.dash-cpw-step-marker-next {
  background: #fef3c7;
}

.dash-cpw-step-marker-next svg {
  stroke: #d97706;
}

.dash-cpw-step-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.dash-cpw-step-label-sm {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--jobs-text-muted);
}

.dash-cpw-step-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dash-cpw-salary {
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  margin-top: 0.15rem;
}

.dash-cpw-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  flex-shrink: 0;
  background: #f3f4f6;
}

.dash-cpw-step-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #9ca3af;
}

/* --------------------------------------------------------------------------
   Missing skills badges
   -------------------------------------------------------------------------- */

.dash-cpw-missing {
  margin-bottom: 0.85rem;
}

.dash-cpw-missing-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--jobs-text-muted);
  margin-bottom: 0.4rem;
}

.dash-cpw-missing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dash-cpw-skill-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: -0.005em;
}

.dash-cpw-badge-missing {
  background: #fee2e2;
  color: #991b1b;
}

.dash-cpw-badge-partial {
  background: #fef3c7;
  color: #92400e;
}

/* --------------------------------------------------------------------------
   Status message
   -------------------------------------------------------------------------- */

.dash-cpw-status-msg {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.85rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Card footer / CTA
   -------------------------------------------------------------------------- */

.dash-cpw-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f0f1f3;
}

/* --------------------------------------------------------------------------
   Explore pathway cards (grid)
   -------------------------------------------------------------------------- */

.dash-cpw-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.dash-cpw-explore-card {
  background: #fff;
  border: 1.5px solid var(--jobs-card-border);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  animation: fadeSlideIn 0.25s ease-out both;
  transition: all 0.18s ease;
}

.dash-cpw-explore-card:hover {
  box-shadow: var(--jobs-card-hover-shadow);
  transform: translateY(-1px);
}

.dash-cpw-explore-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dash-cpw-explore-name {
  font-family: var(--jobs-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--jobs-text-primary);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}

.dash-cpw-explore-desc {
  font-size: 0.78rem;
  color: var(--jobs-text-secondary);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}

.dash-cpw-explore-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.dash-cpw-explore-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jobs-text-muted);
}

.dash-cpw-explore-meta-item svg {
  width: 14px;
  height: 14px;
}

.dash-cpw-explore-salary {
  color: #059669;
}

.dash-cpw-explore-footer {
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f1f3;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767.98px) {
  .dash-cpw-steps-row {
    flex-direction: column;
  }

  .dash-cpw-step-arrow {
    padding: 0.25rem 0;
    transform: rotate(90deg);
  }

  .dash-cpw-explore-grid {
    grid-template-columns: 1fr;
  }

  .dash-cpw-skills-header {
    padding: 1rem 1.15rem;
  }

  .dash-cpw-skill-item {
    padding: 0.75rem 1.15rem;
  }

  .dash-cpw-pathway-card {
    padding: 1rem 1.15rem;
  }
}

@media (max-width: 575.98px) {
  .dash-cpw-pathway-header {
    flex-direction: column;
    gap: 0.35rem;
  }

  .dash-cpw-skill-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}
