:root {
  color-scheme: dark;
  --ink: #090013;
  --white: #fffef7;
  --pink: #ff0aa5;
  --yellow: #fff51a;
  --green: #53ff7b;
  --cyan: #49e5ff;
  --purple: #8d43ff;
  --muted: #d2c9de;
  --pixel: "Press Start 2P", ui-monospace, monospace;
  --body: "Inter", system-ui, sans-serif;
  font-family: var(--body);
  color: var(--white);
  background: var(--ink);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--ink);
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.request-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(73, 229, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 10, 165, 0.27), transparent 30%),
    linear-gradient(145deg, #090013, #210047 55%, #090013);
}

.request-topbar {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1100px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.request-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pixel);
  font-size: clamp(0.62rem, 1.5vw, 0.84rem);
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.request-brand span {
  display: grid;
  width: 46px;
  height: 46px;
  border: 3px solid #000;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
  place-items: center;
}

.request-shell,
.request-admin-shell {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 0 70px;
}

.request-admin-shell {
  width: min(1180px, calc(100% - 28px));
}

.request-hero {
  margin-bottom: 28px;
  text-align: center;
}

.request-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.request-hero h1,
.request-admin-heading h1 {
  margin-bottom: 14px;
  color: var(--yellow);
  font-family: var(--pixel);
  font-size: clamp(1.6rem, 7vw, 3.6rem);
  line-height: 1.3;
  -webkit-text-stroke: clamp(1px, 0.25vw, 3px) #000;
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--pink), 10px 10px 0 #000;
  text-transform: uppercase;
}

.request-event-name {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 900;
}

.request-card,
.request-success,
.request-closed,
.request-create-card,
.request-share-card,
.request-inbox {
  border: 4px solid #000;
  background: rgba(17, 5, 40, 0.96);
  box-shadow: 9px 9px 0 #000;
}

.request-card,
.request-create-card {
  padding: clamp(22px, 5vw, 40px);
  border-color: var(--pink);
}

.request-card h2,
.request-create-card h2,
.request-share-card h2,
.request-inbox h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.request-intro {
  color: var(--muted);
  line-height: 1.6;
}

.request-form {
  display: grid;
  margin-top: 26px;
  gap: 19px;
}

.request-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.request-form label {
  margin-bottom: 8px;
  color: var(--yellow);
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 3px solid var(--cyan);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: #070010;
  box-shadow: inset 0 0 0 2px #000;
  font: inherit;
}

.request-form textarea {
  min-height: 94px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 245, 26, 0.2);
}

.catalog-autocomplete {
  position: relative;
}

.catalog-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

#song-search.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(83, 255, 123, 0.18);
}

.catalog-results {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 100%;
  max-height: min(380px, 52vh);
  border: 3px solid var(--cyan);
  overflow-y: auto;
  background: #070010;
  box-shadow: 7px 7px 0 #000, 10px 10px 0 var(--pink);
}

.catalog-result {
  display: grid;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: transparent;
  gap: 4px;
  text-align: left;
  cursor: pointer;
}

.catalog-result:last-child {
  border-bottom: 0;
}

.catalog-result:hover,
.catalog-result:focus-visible,
.catalog-result.is-active {
  outline: 0;
  color: var(--ink);
  background: var(--yellow);
}

.catalog-result strong {
  font-size: 0.95rem;
}

.catalog-result span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.catalog-result:hover span,
.catalog-result:focus-visible span,
.catalog-result.is-active span {
  color: #3a0064;
}

.request-submit {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}

.request-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--pink);
  font-weight: 800;
  line-height: 1.5;
}

.request-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.request-success,
.request-closed {
  padding: clamp(28px, 7vw, 54px);
  border-color: var(--green);
  text-align: center;
}

.request-closed {
  border-color: var(--yellow);
}

.request-success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 4px solid #000;
  color: var(--ink);
  background: var(--green);
  box-shadow: 6px 6px 0 var(--pink);
  place-items: center;
  font-family: var(--pixel);
  font-size: 1.7rem;
}

.request-success h2,
.request-closed h2 {
  margin-bottom: 12px;
  font-family: var(--pixel);
  font-size: clamp(1.2rem, 4vw, 2rem);
  line-height: 1.5;
  text-transform: uppercase;
}

.request-success p,
.request-closed p {
  color: var(--muted);
  line-height: 1.6;
}

.request-admin-heading {
  margin-bottom: 28px;
}

.request-admin-heading h1 {
  font-size: clamp(1.6rem, 5vw, 3rem);
}

.request-admin-heading > p:last-child {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
}

.request-create-card {
  max-width: 760px;
}

.request-admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 24px;
}

.request-share-card {
  position: sticky;
  top: 16px;
  padding: 24px;
  border-color: var(--yellow);
}

.request-share-card canvas,
.request-share-card img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border: 10px solid var(--white);
  background: var(--white);
}

.request-share-url {
  display: block;
  margin: 16px 0;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  overflow-wrap: anywhere;
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.35);
  font: 0.83rem/1.5 ui-monospace, monospace;
}

.request-admin-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-admin-button {
  min-height: 42px;
  padding: 9px 12px;
  border: 2px solid #000;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--pink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.request-admin-button.secondary {
  background: var(--cyan);
}

.request-admin-button.danger {
  color: var(--white);
  background: var(--pink);
  box-shadow: 3px 3px 0 #000;
}

.request-inbox {
  border-color: var(--cyan);
  overflow: hidden;
}

.request-inbox > header {
  display: flex;
  padding: 20px 22px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.request-inbox h2 {
  margin: 0;
}

.request-live-count {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.request-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-list-item {
  display: grid;
  padding: 17px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.request-list-item:last-child {
  border-bottom: 0;
}

.request-list-item.is-added {
  opacity: 0.68;
  background: rgba(83, 255, 123, 0.08);
}

.request-list-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.request-list-singer {
  color: var(--yellow);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 900;
}

.request-list-song {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
}

.request-list-meta,
.request-list-note,
.request-list-time {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.request-list-note {
  color: var(--cyan);
}

.request-list-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.request-empty-admin {
  padding: 48px 24px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.request-event-status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-event-status.closed {
  color: var(--white);
  background: var(--pink);
}

/* Beheerpagina */
.request-topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.request-topbar nav a {
  padding: 9px 11px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(9, 0, 19, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.request-topbar nav a:hover,
.request-topbar nav a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.create-card {
  max-width: 720px;
  margin: 28px auto 0;
}

.create-card h1,
.manage-heading h1 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: var(--pixel);
  font-size: clamp(1.45rem, 5vw, 2.8rem);
  line-height: 1.4;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 5px 5px 0 var(--pink);
  text-transform: uppercase;
}

.create-card form {
  display: grid;
  margin-top: 26px;
  gap: 10px;
}

.create-card label,
.share-card label {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
}

.create-card input,
.copy-row input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 3px solid var(--cyan);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: #070010;
}

.create-card input:focus,
.copy-row input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 245, 26, 0.18);
}

.request-button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 16px;
  border: 3px solid #000;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.create-card .request-button {
  margin-top: 14px;
}

.request-button:hover:not(:disabled),
.request-button:focus-visible:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--pink);
}

.request-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.request-button-small {
  min-height: 42px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.request-button-secondary {
  background: var(--cyan);
}

.request-button-danger {
  color: var(--white);
  background: var(--pink);
  box-shadow: 5px 5px 0 #000;
}

.last-event-link {
  display: block;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 900;
}

.manage-view {
  padding-top: 24px;
}

.manage-heading {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.manage-heading > div {
  min-width: 0;
  max-width: 100%;
}

.manage-heading h1 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  overflow-wrap: anywhere;
}

.event-status,
.request-count {
  display: inline-flex;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.event-status.is-closed {
  color: var(--white);
  background: var(--pink);
}

.request-count.has-new {
  animation: request-count-pulse 1.2s ease-in-out infinite alternate;
}

.manage-grid {
  display: grid;
  gap: 24px;
}

.pass-card {
  display: grid;
  border-color: var(--yellow);
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 58px);
}

.pass-builder > p:not(.request-kicker),
.share-panel > p {
  color: var(--muted);
  line-height: 1.55;
}

.priority-options {
  display: grid;
  margin: 24px 0 18px;
  padding: 0;
  border: 0;
  gap: 12px;
}

.priority-options legend {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
}

.priority-option {
  display: grid;
  padding: 15px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.priority-option:has(input:checked) {
  border-color: var(--cyan);
  box-shadow: 4px 4px 0 var(--pink);
}

.priority-option-new:has(input:checked) {
  border-color: var(--yellow);
}

.priority-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.priority-option span {
  display: grid;
  gap: 3px;
}

.priority-option strong {
  font-size: 1rem;
}

.priority-option small {
  color: var(--muted);
  line-height: 1.4;
}

.share-panel {
  padding: 22px;
  border: 3px dashed var(--cyan);
  background: rgba(73, 229, 255, 0.06);
}

.share-panel-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.share-panel-heading .request-kicker {
  margin: 0;
}

.priority-label {
  display: inline-flex;
  padding: 7px 9px;
  border: 2px solid #000;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.priority-label.is-priority {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--pink);
}

.priority-label.is-repeat {
  color: var(--white);
  background: var(--purple);
}

.one-use-warning {
  margin: 16px 0;
  padding: 10px 12px;
  border-left: 5px solid var(--pink);
  color: var(--white) !important;
  background: rgba(255, 10, 165, 0.13);
  font-weight: 900;
}

.share-panel label {
  display: block;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.request-text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.share-card {
  display: grid;
  border-color: var(--yellow);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.share-card > div:first-child > p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.55;
}

.copy-row {
  display: grid;
  margin-top: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.share-actions {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.request-qr {
  display: grid;
  width: 260px;
  min-height: 260px;
  padding: 12px;
  border: 4px solid #000;
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--pink);
  place-items: center;
  text-align: center;
}

.request-qr img,
.request-qr canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.inbox-card {
  padding: 0;
  border-color: var(--cyan);
  overflow: hidden;
}

.inbox-heading {
  display: flex;
  padding: 24px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.inbox-heading h2 {
  margin: 0;
}

.inbox-heading .request-kicker {
  margin-bottom: 6px;
}

.inbox-card > .request-message {
  padding: 0 24px;
}

.request-stats {
  display: grid;
  padding: 18px 24px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.16);
  background: rgba(73, 229, 255, 0.045);
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.request-stat {
  display: grid;
  min-width: 0;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 0, 16, 0.72);
  gap: 8px;
}

.request-stat-newcomer {
  border-color: rgba(255, 245, 26, 0.55);
}

.request-stat-repeat {
  border-color: rgba(141, 67, 255, 0.75);
}

.request-stat .priority-label {
  width: fit-content;
}

.request-stat strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.2;
}

.request-stat strong span {
  color: var(--green);
  font-size: 1.25em;
}

.request-stat small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.request-item {
  display: grid;
  padding: 20px 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.request-item:last-child {
  border-bottom: 0;
}

.request-item.is-added {
  opacity: 0.68;
  background: rgba(83, 255, 123, 0.1);
}

.request-item-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.request-singer {
  display: block;
  margin-top: 9px;
  color: var(--yellow);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 900;
}

.request-time,
.request-artist,
.request-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.request-song {
  margin: 6px 0 3px;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.request-artist,
.request-note {
  margin: 0;
  line-height: 1.45;
}

.request-note {
  margin-top: 6px;
  color: var(--cyan);
}

.request-item-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.request-text-button {
  padding: 7px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.request-empty {
  padding: 48px 24px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.confirm-dialog {
  width: min(520px, calc(100% - 28px));
  padding: clamp(24px, 5vw, 38px);
  border: 4px solid var(--pink);
  color: var(--white);
  background: #110528;
  box-shadow: 10px 10px 0 #000, 14px 14px 0 var(--yellow);
}

.confirm-dialog::backdrop {
  background: rgba(3, 0, 10, 0.78);
  backdrop-filter: blur(5px);
}

.confirm-dialog[open] {
  animation: confirm-dialog-in 160ms ease-out both;
}

.confirm-dialog-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 3px solid #000;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
  font-family: var(--pixel);
  font-size: 1.35rem;
  place-items: center;
}

.confirm-dialog h2 {
  margin: 6px 0 14px;
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.confirm-dialog-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.confirm-dialog-description strong {
  color: var(--yellow);
}

.confirm-dialog .request-message {
  margin: 14px 0 0;
}

.confirm-dialog-actions {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.confirm-dismiss-button {
  color: var(--white);
  background: var(--pink);
}

@keyframes confirm-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
}

.manage-footer-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.manage-footer-actions p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: right;
}

@keyframes request-count-pulse {
  to {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 0 20px rgba(83, 255, 123, 0.55);
  }
}

@media (max-width: 820px) {
  .request-admin-grid,
  .request-field-row {
    grid-template-columns: 1fr;
  }

  .request-share-card {
    position: static;
  }

  .request-list-item {
    grid-template-columns: 1fr;
  }

  .request-list-actions {
    justify-content: flex-start;
  }

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

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

  .request-qr {
    width: min(260px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .request-item {
    grid-template-columns: 1fr;
  }

  .request-item-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 540px) {
  .request-topbar {
    min-height: 66px;
  }

  .request-brand strong {
    display: none;
  }

  .request-topbar .pixel-button-small {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .request-card,
  .request-create-card {
    padding: 20px;
  }

  .request-topbar {
    align-items: flex-start;
    padding-top: 10px;
  }

  .request-topbar nav {
    gap: 5px;
  }

  .request-topbar nav a {
    padding: 7px;
    font-size: 0.68rem;
  }

  .manage-heading,
  .manage-footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .manage-footer-actions p {
    text-align: left;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .request-item-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .request-stats {
    grid-template-columns: 1fr;
  }

  .confirm-dialog-actions {
    grid-template-columns: 1fr;
  }
}
