
body {
  font-family: Arial, sans-serif;
  margin: 2rem;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 1rem;
  margin: auto;
  box-sizing: border-box;
}

.panel {
  background: white;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2, h3 {
  margin-top: 0;
}

input,
textarea,
select,
button {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.6rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

button:hover {
  background-color: #005fa3;
}

.hidden {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5rem 0;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.forgot-link {
  margin-top: 1rem;
  text-align: right;
}

#qr-display canvas {
  display: block;
  margin: 1rem auto;
  border: 1px solid #ccc;
}
button {
  background-color: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-bottom: 1rem; /* This is the key fix */
}

.panel p:last-child {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
/* Role-based color themes (optional) */
[data-school="kinetic-bridges"] {
  --primary-color: #005fa3;
}
[data-school="hope-academy"] {
  --primary-color: #8c1d40;
}
[data-school="summit-christian"] {
  --primary-color: #2c6e49;
}

:root {
  --primary-color: #0077cc;
}

button {
  background-color: var(--primary-color);
}

a {
  background-color: transparent;
}