:root {
  --black: #050505;
  --ink: #111111;
  --graphite: #3f3f3f;
  --muted: #747474;
  --line: #d7d7d7;
  --soft-line: #ececec;
  --paper: #ffffff;
  --paper-soft: #f4f4f2;
  --field: #fbfbfb;
  --error: #8f1d1d;
  --success: #1f5d3a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper-soft);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--paper-soft);
}

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

.landing-shell {
  min-height: 100vh;
  padding-bottom: clamp(36px, 6vw, 78px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 48vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(44px, 7vw, 88px) 22px clamp(86px, 11vw, 136px);
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.12), transparent 31%),
    linear-gradient(145deg, #040404 0%, #161616 52%, #080808 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44));
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  width: min(900px, 92vw);
  max-width: none;
  opacity: 0.055;
  transform: translate(-50%, -50%);
  clip-path: inset(0 0 38% 0);
  filter: drop-shadow(0 22px 60px rgba(255, 255, 255, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
}

.hero-brand {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.74rem, 1.3vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.royal-logo {
  display: block;
  width: min(420px, 62vw);
  margin: 0 auto;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.28));
}

.service-line {
  margin: 30px 0 0;
  color: #f2f2f2;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
}

.intro-copy {
  max-width: 720px;
  margin: 26px auto 0;
  color: #ffffff;
  opacity: 1;
  font-size: clamp(1.24rem, 2.55vw, 1.66rem);
  font-weight: 600;
  line-height: 1.48;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.18), 0 2px 22px rgba(0, 0, 0, 0.34);
}

.form-panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 980px);
  margin: clamp(-78px, -7vw, -54px) auto 0;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.14);
}

.form-heading {
  margin-bottom: clamp(26px, 4vw, 40px);
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.08;
  text-align: left;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field--hidden {
  display: none;
}

label {
  display: block;
  margin-bottom: 9px;
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 15px;
  color: var(--ink);
  background: var(--field);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b9b9b9;
  background: var(--paper);
}

select {
  min-height: 52px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--graphite) 50%),
    linear-gradient(135deg, var(--graphite) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

textarea {
  min-height: 146px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.07);
}

::placeholder {
  color: #8c8c8c;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--soft-line);
  padding-top: 6px;
}

.privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.privacy-consent label {
  margin: 0;
  color: var(--graphite);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
}

.privacy-consent a,
.site-footer a,
.legal-back-link {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

.form-actions {
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
  margin-top: 12px;
  padding-top: 12px;
}

button {
  min-height: 54px;
  width: min(100%, 340px);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

button:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-1px);
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.form-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.form-message--success {
  color: var(--success);
}

.form-message--error {
  color: var(--error);
}

.site-footer {
  width: min(calc(100% - 32px), 980px);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.legal-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px) 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.035), transparent 240px),
    var(--paper-soft);
}

.legal-card {
  width: min(100%, 820px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: clamp(28px, 6vw, 58px);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.legal-card h1 {
  margin: 10px 0 26px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1;
}

.legal-card p {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.75;
}

.legal-back-link {
  display: inline-flex;
  margin-top: 10px;
}

.admin-page {
  min-height: 100vh;
  background: var(--paper-soft);
}

.kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-header {
  --admin-header-image: linear-gradient(transparent, transparent);
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 6vw, 72px);
  color: var(--paper);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)),
    var(--admin-header-image),
    var(--black);
  background-position: center;
  background-size: cover;
}

.admin-header::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.admin-header--dashboard {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 104px;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 42px);
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(4, 4, 4, 0.98), rgba(18, 18, 18, 0.96)),
    var(--black);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.admin-header--dashboard::after {
  display: none;
}

.admin-header--compact {
  min-height: 180px;
}

.admin-header-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.admin-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.admin-header--dashboard .admin-logo {
  width: 44px;
  height: 44px;
}

.admin-header h1 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 800;
}

.admin-header--dashboard h1 {
  margin-top: 5px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.admin-header-info {
  display: grid;
  gap: 6px;
  padding-left: clamp(14px, 2vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-header--dashboard .admin-header-actions {
  gap: 10px;
}

.admin-count {
  margin: 0;
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f2f2f2;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-session {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  white-space: nowrap;
}

.admin-main {
  padding: clamp(18px, 4vw, 48px);
}

.admin-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.admin-toolbar h2,
.admin-card h2 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.admin-toolbar p {
  margin: 0;
  color: var(--muted);
}

.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
}

table {
  width: 100%;
  min-width: 1380px;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table {
  min-width: 1380px;
  table-layout: fixed;
}

.admin-table th:nth-child(1),
.admin-table td:nth-child(1) {
  width: 14%;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
  width: 11%;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
  width: 14%;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
  width: 14%;
}

.admin-table th:nth-child(5),
.admin-table td:nth-child(5) {
  width: 11%;
}

.admin-table th:nth-child(6),
.admin-table td:nth-child(6) {
  width: 6%;
}

.admin-table th:nth-child(7),
.admin-table td:nth-child(7) {
  width: 12%;
}

.admin-table th:nth-child(8),
.admin-table td:nth-child(8) {
  width: 18%;
}

.admin-table thead {
  background: var(--ink);
}

th,
td {
  border-bottom: 1px solid var(--soft-line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.42;
}

th {
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
}

.admin-table thead th {
  border-bottom: 0;
}

.admin-table thead th:first-child {
  border-top-left-radius: 11px;
}

.admin-table thead th:last-child {
  border-top-right-radius: 11px;
}

td {
  color: var(--graphite);
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: #fafafa;
}

.admin-table strong {
  display: block;
  color: var(--ink);
}

.table-subtext {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.status-form {
  display: grid;
  gap: 8px;
  margin: 0;
}

.status-select {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 40px 10px 12px;
  background-color: var(--paper);
  background-position:
    calc(100% - 20px) 18px,
    calc(100% - 14px) 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.status-select--nuevo {
  border-color: #b7d7f3;
  color: #155b9b;
  background-color: #eaf4ff;
}

.status-select--contactado {
  border-color: #d3d8de;
  color: #59636f;
  background-color: #f2f4f6;
}

.status-select--cotizacion {
  border-color: #e7c866;
  color: #7a5b00;
  background-color: #fff6d9;
}

.status-select--seguimiento {
  border-color: #d7c5ef;
  color: #6842a0;
  background-color: #f4edff;
}

.status-select--contratado {
  border-color: #a8d9bd;
  color: #1f6b3d;
  background-color: #eaf8ef;
}

.status-select--perdido {
  border-color: #efb6b6;
  color: #9a2727;
  background-color: #fff0f0;
}

.status-form--compact {
  min-width: 148px;
}

.status-form--compact .status-select {
  min-height: 38px;
  padding: 8px 36px 8px 10px;
  background-position:
    calc(100% - 19px) 16px,
    calc(100% - 13px) 16px;
  font-size: 0.8rem;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 236px;
}

.action-chip,
.link-button,
.action-more summary {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.action-chip:hover,
.link-button:hover,
.action-more summary:hover {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  transform: none;
}

.action-chip--primary {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.action-chip--primary:hover {
  color: var(--ink);
  background: var(--paper);
}

.action-chip--whatsapp {
  border-color: #9fc9af;
  color: #1f6b3d;
  background: #edf8f1;
}

.action-chip--whatsapp:hover {
  border-color: #1f6b3d;
  color: var(--paper);
  background: #1f6b3d;
}

.action-more {
  position: relative;
}

.action-more summary {
  list-style: none;
}

.action-more summary::-webkit-details-marker {
  display: none;
}

.action-more-menu {
  display: grid;
  gap: 6px;
  min-width: 160px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.action-more-menu a,
.action-more-menu button {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 7px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.action-more-menu a:hover {
  background: #f2f2f2;
}

.action-more-menu form {
  display: grid;
}

.action-more-menu .action-danger {
  color: var(--error);
}

.action-more-menu .action-danger:hover {
  color: var(--paper);
  background: var(--error);
  transform: none;
}

.link-button {
  min-height: auto;
  width: auto;
}

.danger,
.admin-button--danger {
  border-color: rgba(143, 29, 29, 0.28);
  color: var(--error);
}

.empty-state {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
}

.admin-button {
  display: inline-flex;
  min-height: 42px;
  width: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-button:hover {
  color: var(--ink);
  background: var(--paper);
  transform: none;
}

.admin-button--primary {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

.admin-button--primary:hover {
  border-color: #d7d7d7;
  color: var(--ink);
  background: #e9e9e9;
}

.admin-button--secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.admin-button--secondary:hover {
  color: var(--ink);
  background: var(--paper);
}

.admin-button--light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  background: var(--paper);
}

.admin-button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
  background: transparent;
}

.admin-button--ghost:hover {
  color: var(--ink);
  background: var(--paper);
}

.admin-logout-form {
  display: inline-flex;
  margin: 0;
}

.admin-link-button {
  min-height: auto;
  width: auto;
  border: 0;
  border-radius: 0;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-link-button:hover {
  color: var(--paper);
  background: transparent;
  transform: none;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: stretch;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
}

.account-main {
  display: grid;
  justify-items: center;
}

.account-card {
  width: min(100%, 720px);
}

.account-copy {
  max-width: 520px;
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.account-message {
  min-height: 1.5em;
  margin-bottom: 22px;
  text-align: left;
}

.account-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
}

.detail-item {
  border-bottom: 1px solid var(--soft-line);
  padding-bottom: 13px;
}

.detail-item--status {
  border: 1px solid var(--soft-line);
  border-radius: 10px;
  padding: 14px;
  background: #fafafa;
}

.detail-item dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-item dd {
  margin: 7px 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.detail-item--status dd {
  max-width: 340px;
  margin-top: 10px;
}

.admin-side-actions {
  display: grid;
  align-self: center;
  gap: 12px;
  justify-items: stretch;
}

.admin-side-actions .admin-button,
.admin-side-actions form,
.admin-side-actions form .admin-button {
  width: 100%;
}

.admin-side-actions form {
  display: grid;
}

.quote-draft {
  margin-top: 18px;
  min-height: 430px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.login-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.11), transparent 32%),
    linear-gradient(145deg, #030303, #191919 54%, #060606);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-card {
  display: grid;
  width: min(100%, 420px);
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 42px 36px 36px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.login-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.36));
}

.login-card .kicker {
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-card h1 {
  margin: 10px 0 0;
  font-size: clamp(2.6rem, 9vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.login-copy {
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.login-form {
  display: grid;
  width: 100%;
  gap: 16px;
}

.login-card label {
  color: rgba(255, 255, 255, 0.86);
}

.login-form button {
  width: 100%;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 390px;
    padding: 42px 18px 104px;
  }

  .royal-logo {
    width: min(340px, 72vw);
  }

  .service-line {
    margin-top: 24px;
  }

  .form-panel {
    width: min(calc(100% - 24px), 980px);
    margin-top: -72px;
    padding: 24px;
  }

  .form-heading h2 {
    text-align: left;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  button {
    width: 100%;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header--dashboard {
    position: sticky;
    min-height: auto;
    padding: 18px;
  }

  .admin-header-left {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .admin-header-info {
    padding-left: 0;
    border-left: 0;
  }

  .admin-header-actions,
  .admin-toolbar,
  .admin-layout,
  .detail-grid,
  .account-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-button,
  .admin-header-actions form,
  .admin-header-actions button {
    width: 100%;
  }

  .admin-link-button {
    justify-content: center;
    text-align: center;
  }
}
