/* Resume-draft banner — shown when an earlier auto-saved registration exists.
 * Explicit hex, light + html.dark-mode (TASK-205). */

.draft-resume-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 20px;
  padding: 14px 18px;
  border: 1px solid #bae6fd;
  border-left: 4px solid #0ea5e9;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0f172a;
}

.draft-resume-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}
.draft-resume-text i {
  color: #0ea5e9;
  font-size: 18px;
}

.draft-resume-actions {
  display: flex;
  gap: 10px;
}

.draft-resume-banner button {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}
.draft-resume-yes {
  background: #0ea5e9;
  color: #ffffff;
}
.draft-resume-yes:hover {
  background: #0284c7;
}
.draft-resume-no {
  background: transparent;
  border-color: #cbd5e1;
  color: #475569;
}
.draft-resume-no:hover {
  border-color: #94a3b8;
  color: #1f2937;
}

/* -------------------------------------------------------------- dark */

html.dark-mode .draft-resume-banner {
  background: rgba(56, 189, 248, 0.10);
  border-color: rgba(56, 189, 248, 0.35);
  border-left-color: #38bdf8;
  color: #f1f5f9;
}
html.dark-mode .draft-resume-text i {
  color: #38bdf8;
}
html.dark-mode .draft-resume-yes {
  background: #38bdf8;
  color: #0b1120;
}
html.dark-mode .draft-resume-yes:hover {
  background: #7dd3fc;
}
html.dark-mode .draft-resume-no {
  border-color: rgba(255, 255, 255, 0.25);
  color: #cbd5e1;
}
html.dark-mode .draft-resume-no:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #f1f5f9;
}

@media (max-width: 600px) {
  .draft-resume-banner { padding: 12px 14px; }
  .draft-resume-actions { width: 100%; }
  .draft-resume-banner button { flex: 1; }
}
