/* Styles for the custom 404 page (DOC-945).
 *
 * Everything is scoped under `.notfound-page` so these rules only affect the
 * 404 template (_templates/404.html) and never leak into other pages. Colors
 * use the pydata-sphinx-theme CSS variables so the page follows light/dark
 * mode automatically. */

.notfound-page {
  max-width: 42rem;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.notfound-code {
  margin: 0;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pst-color-primary);
}

.notfound-title {
  margin-top: 0.5rem;
}

.notfound-lead {
  font-size: 1.1rem;
  color: var(--pst-color-text-muted);
}

.notfound-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 28rem;
  margin: 2rem auto 0;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--pst-color-border);
  border-radius: 0.6rem;
  background: var(--pst-color-surface);
  color: var(--pst-color-text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.notfound-search:hover {
  border-color: var(--pst-color-primary);
  background: var(--pst-color-primary-bg);
  color: var(--pst-color-text-base);
}

.notfound-search__icon {
  font-size: 1.1rem;
  color: var(--pst-color-primary);
}

.notfound-search__text {
  flex: 1;
  text-align: left;
}
