:root {
  --canvas: #05070d;
  --canvas-2: #090d16;
  --surface: #0f1726;
  --surface-2: #121d30;
  --surface-3: #18263d;
  --line: #263753;
  --line-bright: #355075;
  --text: #f7fbff;
  --muted: #9fb0c8;
  --muted-2: #7587a2;
  --teal: #14f1d9;
  --teal-soft: rgba(20, 241, 217, 0.12);
  --lime: #a8ff60;
  --lime-soft: rgba(168, 255, 96, 0.14);
  --rose: #ff5d8f;
  --rose-soft: rgba(255, 93, 143, 0.16);
  --amber: #ffd166;
  --amber-soft: rgba(255, 209, 102, 0.16);
  --violet: #b78cff;
  --violet-soft: rgba(183, 140, 255, 0.14);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #070a12 0%, #05070d 34%, #080b12 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.25;
}

h3 {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.25;
}

.hidden {
  display: none !important;
}

.app-shell {
  min-height: 100vh;
}

.auth-screen,
.school-screen {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 28px;
}

.auth-card,
.school-selection-card {
  width: min(1080px, 100%);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(8, 12, 22, 0.96);
  box-shadow: var(--shadow);
}

.school-selection-card {
  width: min(900px, 100%);
}

.admin-console-card {
  width: min(1040px, 100%);
}

.auth-brand,
.repo-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.auth-brand {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.auth-logo,
.repo-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(20, 241, 217, 0.12);
}

.auth-logo {
  width: 84px;
  height: 58px;
  padding: 4px;
}

.repo-logo {
  width: 62px;
  height: 44px;
  padding: 3px;
}

.repo-owner,
.panel-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repo-owner {
  margin-bottom: 4px;
}

.panel-kicker {
  margin-bottom: 5px;
}

.auth-grid,
.account-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-help-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-name-grid {
  gap: 10px;
}

.auth-form {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 29, 48, 0.96), rgba(10, 15, 26, 0.96));
}

.login-form-panel {
  align-self: start;
  gap: 9px;
}

.login-button {
  width: fit-content;
  min-height: 31px;
  padding: 5px 12px;
}

.auth-form h2,
.auth-form h3 {
  color: var(--text);
}

.account-help-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 209, 102, 0.44);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 209, 102, 0.08);
}

.account-help-heading {
  display: grid;
  gap: 2px;
}

.account-help-result {
  min-height: 18px;
  margin: 0;
  color: var(--lime);
  font-size: 0.83rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.auth-message {
  min-height: 20px;
  margin-bottom: 0;
  color: var(--rose);
  font-size: 0.88rem;
  font-weight: 850;
}

.login-message {
  min-height: 18px;
  margin: -2px 0 0;
  font-size: 0.82rem;
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

.password-field input {
  min-width: 0;
}

.password-toggle {
  min-height: 39px;
  padding: 7px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  background: var(--surface-3);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.password-toggle:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.repo-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.94);
  backdrop-filter: blur(14px);
}

.repo-actions,
.project-toolbar,
.form-actions,
.editor-heading,
.editor-heading-actions {
  display: flex;
  align-items: center;
}

.repo-actions,
.project-toolbar,
.form-actions,
.editor-heading-actions {
  gap: 9px;
}

.repo-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.user-chip {
  display: grid;
  gap: 1px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(183, 140, 255, 0.44);
  border-radius: 8px;
  background: var(--violet-soft);
}

.school-portal-control {
  display: grid;
  gap: 3px;
  min-width: min(320px, 100%);
  padding: 7px 11px;
  border: 1px solid rgba(20, 241, 217, 0.42);
  border-radius: 8px;
  background: var(--teal-soft);
}

.school-portal-control span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-portal-control strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
}

.school-portal-control .table-action {
  width: fit-content;
  margin-top: 3px;
}

.school-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-console-section {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 9, 19, 0.48);
}

.admin-section-heading {
  display: grid;
  gap: 2px;
}

.admin-account-list {
  display: grid;
  gap: 10px;
}

.admin-search {
  width: 100%;
  max-width: none;
}

.admin-account-card {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(15, 23, 38, 0.92);
}

.admin-account-card.recovery {
  border-left-color: var(--violet);
}

.admin-account-card.recovery.pending {
  box-shadow: inset 0 0 0 1px rgba(183, 140, 255, 0.16);
}

.admin-account-card.recovery.approved {
  border-left-color: var(--lime);
}

.admin-account-card h3 {
  color: var(--text);
  overflow-wrap: anywhere;
}

.admin-account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-account-details span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 9, 19, 0.58);
  color: var(--muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.admin-account-details strong {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.school-choice-card {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(15, 23, 38, 0.92);
  color: var(--text);
  text-align: left;
}

.school-choice-card:hover {
  border-color: rgba(168, 255, 96, 0.58);
  border-left-color: var(--lime);
  background: rgba(18, 29, 48, 0.98);
}

.school-choice-card span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-choice-card strong {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
}

.user-chip span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
}

.user-chip small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.button,
.table-action,
.store-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 850;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid transparent;
  font-size: 0.86rem;
}

.button:hover,
.table-action:hover,
.store-remove:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(168, 255, 96, 0.7);
  background: var(--lime);
  color: #061006;
}

.button.secondary {
  border-color: var(--line-bright);
  background: var(--surface-3);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal);
}

.button.compact {
  min-height: 38px;
  padding-inline: 11px;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 18px 24px 30px;
}

.project-panel,
.editor-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 13, 22, 0.94);
  box-shadow: var(--shadow);
}

.project-panel {
  overflow: hidden;
}

.project-toolbar {
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #0b111e;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  max-width: 620px;
  min-width: 180px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050913;
  color: var(--rose);
}

.search-box input {
  min-height: 38px;
  width: 100%;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #050913;
  color: var(--text);
  outline: none;
}

select,
input {
  min-height: 39px;
  padding: 8px 10px;
}

textarea {
  min-height: 112px;
  padding: 10px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
.search-box input::placeholder {
  color: var(--muted-2);
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 241, 217, 0.14);
}

.project-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas-2);
}

.project-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 900;
  text-align: left;
}

.project-tabs button.active {
  border-color: rgba(20, 241, 217, 0.7);
  background: var(--teal-soft);
  color: var(--teal);
}

.project-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 0.8rem;
}

.project-tabs button.active span {
  background: rgba(20, 241, 217, 0.2);
  color: var(--teal);
}

.prf-list {
  display: grid;
  gap: 11px;
  padding: 12px;
}

.prf-card {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(15, 23, 38, 0.9);
}

.prf-card:hover {
  border-color: var(--line-bright);
  border-left-color: var(--lime);
  background: rgba(18, 29, 48, 0.96);
}

.prf-card.urgent {
  border-color: rgba(255, 209, 102, 0.68);
  border-left-color: var(--amber);
  background: rgba(47, 36, 12, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 209, 102, 0.08);
}

.prf-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.title-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  text-align: left;
  font-size: 1rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.title-button:hover {
  color: var(--lime);
  text-decoration: underline;
}

.urgent-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin-top: 8px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 209, 102, 0.6);
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.urgent-badge::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--amber);
  color: #1d1300;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.table-action {
  min-height: 29px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  background: #10192a;
  color: var(--text);
  font-size: 0.76rem;
}

.table-action:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.table-action.danger {
  border-color: rgba(255, 93, 143, 0.44);
  background: var(--rose-soft);
  color: var(--rose);
}

.prf-card-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(180px, 0.85fr));
  gap: 10px;
}

.prf-card-grid section {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 9, 19, 0.64);
}

.prf-card-grid h3 {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note-preview,
.contact-line,
.schedule-line {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.store-list {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.store-chip {
  display: grid;
  gap: 3px;
  max-width: 100%;
  padding: 8px 9px;
  border: 1px solid rgba(20, 241, 217, 0.32);
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--text);
}

.store-chip strong {
  color: var(--teal);
  font-size: 0.82rem;
}

.store-chip span {
  color: #c6d2e3;
  font-size: 0.77rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.status-badge,
.status-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-toggle {
  min-width: 88px;
}

.status-badge.on,
.status-toggle.on {
  border-color: rgba(168, 255, 96, 0.48);
  background: var(--lime-soft);
  color: var(--lime);
}

.status-badge.no,
.status-toggle.no {
  border-color: rgba(255, 93, 143, 0.52);
  background: var(--rose-soft);
  color: var(--rose);
}

.empty-state {
  padding: 30px 14px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line-bright);
  border-radius: 8px;
  background: rgba(15, 23, 38, 0.64);
}

.project-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.project-table {
  width: 100%;
  min-width: 1220px;
  border-collapse: collapse;
}

.project-table th,
.project-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.project-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.project-table tbody tr {
  background: rgba(15, 23, 38, 0.76);
}

.project-table tbody tr:hover {
  background: rgba(20, 241, 217, 0.07);
}

.title-cell {
  min-width: 250px;
}

.empty-row td {
  padding: 36px 16px;
  color: var(--muted);
  text-align: center;
}

.editor-panel {
  align-self: start;
  padding: 16px;
  position: sticky;
  top: 16px;
}

.editor-heading {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

#formModeLabel {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border: 1px solid rgba(183, 140, 255, 0.44);
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 900;
}

form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
}

.urgent-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 209, 102, 0.42);
  border-radius: 8px;
  background: var(--amber-soft);
}

.urgent-toggle input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  accent-color: var(--amber);
}

.urgent-toggle span {
  display: grid;
  gap: 2px;
}

.urgent-toggle small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-entry-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 9, 19, 0.72);
}

.store-entry-card textarea {
  min-height: 78px;
}

.store-chips {
  display: grid;
  gap: 8px;
  min-height: 28px;
}

.store-chips:empty::before {
  content: "No stores added";
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.store-draft-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(20, 241, 217, 0.34);
  border-radius: 8px;
  background: var(--teal-soft);
}

.store-draft-card strong {
  color: var(--teal);
  font-size: 0.86rem;
}

.store-draft-card p {
  margin: 3px 0 0;
  color: #c6d2e3;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.store-remove {
  min-height: 29px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 93, 143, 0.44);
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 0.74rem;
}

.status-modal,
.ticket-modal,
.receipt-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
}

.ticket-modal {
  z-index: 18;
}

.status-modal-backdrop,
.ticket-modal-backdrop,
.receipt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 12, 0.78);
  backdrop-filter: blur(8px);
}

.status-modal-card,
.ticket-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(20, 241, 217, 0.46);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

.ticket-modal-card {
  top: auto;
  width: min(660px, 100%);
}

.status-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.status-modal-header p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-editor-list {
  display: grid;
  gap: 8px;
}

.status-editor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 9, 19, 0.72);
  color: var(--text);
  text-align: left;
}

.status-editor-item span {
  font-weight: 900;
}

.status-editor-item.locked {
  cursor: not-allowed;
  opacity: 0.7;
}

.permission-note {
  margin: 4px 0 0;
  padding: 10px;
  border: 1px solid rgba(255, 93, 143, 0.4);
  border-radius: 8px;
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 850;
}

.receipt-proof {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(168, 255, 96, 0.34);
  border-radius: 8px;
  background: var(--lime-soft);
}

.pickup-notice,
.pickup-panel {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 209, 102, 0.42);
  border-radius: 8px;
  background: var(--amber-soft);
}

.pickup-notice {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.pickup-notice strong,
.pickup-panel strong {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pickup-notice span,
.pickup-panel p {
  margin: 0;
  color: #ffe6a7;
  font-size: 0.8rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pickup-panel.muted {
  border-color: var(--line);
  background: rgba(5, 9, 19, 0.62);
}

.pickup-panel.muted strong {
  color: var(--muted);
}

.pickup-panel.muted p {
  color: var(--muted);
}

.receipt-proof strong {
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.receipt-proof a,
.receipt-proof span {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.receipt-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.receipt-form {
  display: grid;
  gap: 13px;
}

.receipt-message {
  min-height: 18px;
  margin: 0;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 900px) {
  .auth-grid,
  .account-help-grid,
  .school-selection-grid,
  .admin-account-details {
    grid-template-columns: 1fr;
  }

  .prf-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .auth-screen,
  .school-screen {
    padding: 16px;
  }

  .repo-header,
  .project-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .repo-actions,
  .project-toolbar,
  .search-box,
  .school-portal-control {
    width: 100%;
    max-width: none;
  }

  .repo-actions {
    justify-content: stretch;
  }

  .repo-header,
  .project-layout {
    padding-inline: 14px;
  }

  .prf-card-header {
    align-items: stretch;
    flex-direction: column;
  }

  .row-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .auth-brand,
  .repo-title {
    align-items: flex-start;
  }

  .repo-actions,
  .form-actions {
    flex-direction: column;
  }

  .repo-actions .button,
  .form-actions .button,
  .store-entry-card .button {
    width: 100%;
  }

  .two-column,
  .store-draft-card,
  .password-field {
    grid-template-columns: 1fr;
  }

  .project-tabs {
    gap: 8px;
  }

  .project-tabs button {
    min-height: 44px;
    padding-inline: 10px;
  }
}
