.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.language-toggle {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 2.8rem;
  padding: .45rem .7rem;
  background: rgba(255, 255, 255, .055);
  color: var(--text);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}
.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent-2);
  outline: none;
}
.cv-error {
  margin: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 120, 120, .5);
  border-radius: 10px;
  color: #ffe2e2;
  background: rgba(120, 20, 20, .25);
}
@media (max-width: 700px) {
  .nav-right {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
  }
  .nav-right .links {
    flex: 1;
  }
}
