:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

body.white-page {
  background: #ffffff;
  color: #ffffff;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.05;
}

.btn:hover {
  color: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  opacity: 1;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px;
  }
}
