/* =========================================================
   E-SPIR Supplier — Shell-branded stylesheet
   Aligned to Shell Brand Core Elements — Colour Policy v1.0
   (Nov 2024) and Typography Standards (May 2025).
     - Canvas:        Shell White / Grey-50
     - Brand anchor:  Shell Yellow #FFC600 (CTA, active nav, focus)
     - Text:          Shell Grey 700 (body) / 900 (strong); Grey 500 muted
     - Emphasis/error:Shell Red #DD1D21 (sparing)
     - Support accent:Shell secondary "Night" #336094 (links, outlines)
     - Flat colour only — no gradients, no metallics, never black
   ========================================================= */

:root {
  /* Shell primary palette */
  --shell-white:        #FFFFFF;
  --shell-yellow-100:   #ffdf55;
  --shell-yellow-200:   #FFC600;   /* brand anchor */
  --shell-yellow-300:   #d6a200;   /* darker yellow for hover/borders */
  --shell-yellow-50:    #fff7b4;   /* soft yellow surface tint */
  --shell-red-50:       #fff2f0;
  --shell-red-500:      #DD1D21;   /* danger / critical only */

  /* Shell functional greys */
  --shell-grey-50:      #F5F5F5;
  --shell-grey-100:     #E0E0E0;
  --shell-grey-200:     #C0C0C0;
  --shell-grey-300:     #AAAAAA;
  --shell-grey-400:     #919191;   /* large text only */
  --shell-grey-500:     #757575;   /* muted text (4.61:1 on white) */
  --shell-grey-600:     #616161;
  --shell-grey-700:     #4A4A4A;   /* default body text (8.86:1) */
  --shell-grey-800:     #343434;
  --shell-grey-900:     #292929;   /* strong / small text (14.55:1) */

  /* Shell secondary palette (inside-impression accents) */
  --shell-night-50:     #f1f4f9;
  --shell-night-600:    #336094;   /* secondary action, links (6.40:1) */
  --shell-night-700:    #204b7a;
  --shell-ocean-400:    #0097a9;   /* info */
  --shell-forest-500:   #008557;   /* success */
  --shell-sunrise-300:  #ED8A00;   /* warning */

  /* Semantic aliases */
  --color-bg:            var(--shell-grey-50);
  --color-surface:       var(--shell-white);
  --color-surface-alt:   var(--shell-grey-50);
  --color-border:        var(--shell-grey-100);
  --color-text:          var(--shell-grey-700);
  --color-text-strong:   var(--shell-grey-900);
  --color-text-muted:    var(--shell-grey-500);
  --color-link:          var(--shell-night-600);
  --color-link-hover:    var(--shell-night-700);
  --color-primary:       var(--shell-yellow-200);
  --color-primary-hover: var(--shell-yellow-300);
  --color-on-primary:    var(--shell-grey-900);   /* 9.23:1 on Yellow — AAA */
  --color-danger:        var(--shell-red-500);
  --color-focus:         var(--shell-yellow-200);

  /* Shape & elevation */
  --radius-sm:           3px;
  --radius:              6px;
  --radius-lg:           8px;
  --shadow-sm:           0 1px 3px rgba(41,41,41,.08);
  --shadow-md:           0 4px 14px rgba(41,41,41,.10);

  /* Typography — Shell Font, self-hosted from eSPIR/fonts/ (Heavy/Medium/Book/Light/Bold) */
  --font-headline:       'Shell Heavy', 'Segoe UI', Helvetica, Roboto, sans-serif;
  --font-body:           'Shell Medium', 'Segoe UI', Helvetica, Roboto, sans-serif;
  --font-book:           'Shell Book', 'Segoe UI', Helvetica, Roboto, sans-serif;
  --font-light:          'Shell Light', 'Segoe UI', Helvetica, Roboto, sans-serif;
}

/* -------------------------------------------------------------------
   Shell Font faces — licensed Brand Central web fonts, self-hosted in
   eSPIR/fonts/ (WOFF2 with a WOFF fallback for older browsers).
   Role mapping per Shell Typography Standards:
     Shell Heavy  -> headlines / strong emphasis  (--font-headline)
     Shell Medium -> default body / UI controls    (--font-body)
     Shell Book   -> long-form reading             (--font-book)
     Shell Light  -> large decorative numerics ≥32px (--font-light)
     Shell Bold   -> in-copy emphasis (<strong>, <b>)
   Italic, Condensed, EOT, SVG, OTF and TTF variants are intentionally
   not deployed (italics are prohibited for headlines/copy by brand).
   ------------------------------------------------------------------- */
@font-face {
  font-family: 'Shell Heavy';
  src: url('../fonts/ShellHeavy.woff2') format('woff2'),
       url('../fonts/ShellHeavy.woff') format('woff'),
       local('Shell Heavy'), local('Shell-Heavy'), local('Shell W01 Heavy');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shell Medium';
  src: url('../fonts/ShellMedium.woff2') format('woff2'),
       url('../fonts/ShellMedium.woff') format('woff'),
       local('Shell Medium'), local('Shell-Medium'), local('Shell W01 Medium');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shell Book';
  src: url('../fonts/ShellBook.woff2') format('woff2'),
       url('../fonts/ShellBook.woff') format('woff'),
       local('Shell Book'), local('Shell-Book'), local('Shell W01 Book');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shell Light';
  src: url('../fonts/ShellLight.woff2') format('woff2'),
       url('../fonts/ShellLight.woff') format('woff'),
       local('Shell Light'), local('Shell-Light'), local('Shell W01 Light');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Shell Bold';
  src: url('../fonts/ShellBold.woff2') format('woff2'),
       url('../fonts/ShellBold.woff') format('woff'),
       local('Shell Bold'), local('Shell-Bold'), local('Shell W01 Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: var(--color-link); text-decoration: none; }
a:hover { color: var(--color-link-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* In-copy emphasis uses the real Shell Bold face (no synthetic bold) */
strong, b { font-family: 'Shell Bold', var(--font-body); font-weight: 700; }

/* Visible keyboard focus for every interactive element (Shell Yellow) */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: inherit;
}

/* Skip-to-content link, hidden until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 14px;
  background: var(--shell-grey-900);
  color: #fff !important;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; outline: 2px solid var(--color-focus); outline-offset: 2px; }

/* --- Header (Shell pecten + product name, no menu) ------- */
.site-header {
  background: var(--color-surface);
  border-bottom: 3px solid var(--shell-yellow-200);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-brand:hover { text-decoration: none; }
.header-logo { height: 42px; width: auto; flex-shrink: 0; }
.brand-text { font-family: var(--font-headline); font-size: 1.15rem; font-weight: 700; letter-spacing: 0; white-space: nowrap; color: var(--color-text-strong); }
.brand-sub { font-size: .68rem; color: var(--shell-night-600); font-weight: 400; display: block; margin-top: -2px; }

/* --- Main ------------------------------------------------ */
.main-wrap {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 20px 28px;
  flex: 1;
}

/* --- Page title ------------------------------------------ */
.page-title {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.page-title h1 { font-family: var(--font-headline); font-size: 1.22rem; font-weight: 700; color: var(--color-text-strong); }
.page-title .subtitle { font-size: .78rem; color: var(--color-text-muted); margin-top: 1px; }
.page-title .subtitle a { color: var(--color-link); }

/* EULA call-out — bold, Shell Yellow highlight for visibility */
.eula-link {
  display: inline-block;
  font-family: 'Shell Bold', var(--font-body);
  font-weight: 700;
  color: var(--color-on-primary) !important;
  background: var(--shell-yellow-200);
  padding: 1px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.eula-link:hover {
  background: var(--shell-yellow-300);
  text-decoration: none;
}

/* --- Prose ----------------------------------------------- */
.prose { max-width: none; }
.prose p { margin-bottom: .6em; font-size: .92rem; }

.prose h2 {
  font-family: var(--font-headline);
  font-size: .96rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin: .9em 0 .3em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-border);
}

.prose h3 {
  font-family: var(--font-headline);
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-strong);
  margin: .75em 0 .25em;
}

/* --- Download cards -------------------------------------- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 10px;
  margin: 10px 0 14px;
}

.dl-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 10px 14px;
  text-align: center;
  transition: box-shadow .18s, transform .18s;
  position: relative;
}
.dl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.dl-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--shell-yellow-200);
  border-radius: var(--radius) var(--radius) 0 0;
}

.dl-card .dl-label {
  font-size: .72rem;
  letter-spacing: 0;
  color: var(--color-text);
  margin-bottom: 2px;
}
.dl-card .dl-version {
  font-family: var(--font-headline);
  font-size: .86rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin-bottom: 6px;
}

.dl-card .dl-icon {
  width: 32px; height: 32px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--color-surface-alt);
}
.dl-card .dl-icon svg {
  width: 16px; height: 16px;
  stroke: var(--shell-night-600);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 4px 14px;
  font-size: .76rem;
  font-weight: 600;
  border-radius: 3px;
  transition: background .12s, box-shadow .12s;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary) !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1px solid var(--shell-night-600);
  color: var(--shell-night-600) !important;
  background: transparent;
}
.btn-outline:hover { background: var(--shell-night-50); text-decoration: none; }

.dl-card .dl-links { margin-top: 4px; }
.dl-card .dl-links a { display: block; font-size: .76rem; margin-top: 2px; }

/* --- Notices --------------------------------------------- */
.notice {
  background: var(--shell-yellow-50);
  border-left: 3px solid var(--shell-yellow-200);
  padding: 8px 12px;
  margin: 10px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .82rem;
  line-height: 1.48;
  color: var(--color-text-strong);
}
.notice.notice-blue { background: var(--shell-night-50); border-left-color: var(--shell-night-600); }
.notice.notice-muted { background: var(--shell-grey-50); border-left-color: var(--shell-grey-300); color: var(--color-text); }

/* --- Prereq list ----------------------------------------- */
.req-list { list-style: none; margin: 6px 0 10px; padding: 0; }
.req-list li { position: relative; padding-left: 16px; margin-bottom: 3px; font-size: .82rem; }
.req-list li::before { content: "\2022"; position: absolute; left: 3px; color: var(--shell-yellow-300); font-weight: bold; }

/* --- Contact block --------------------------------------- */
.contact-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 540px;
}
.contact-block h2 { font-family: var(--font-headline); font-size: .92rem; margin-bottom: 8px; color: var(--color-text-strong); }
.contact-block h2.contact-block-h2-spaced { margin-top: 14px; }
.contact-block dt { font-weight: 600; font-size: .8rem; margin-top: 7px; color: var(--color-text-strong); }
.contact-block dd { font-size: .8rem; color: var(--color-text); margin-left: 0; }
.contact-block a { word-break: break-all; }

/* --- Deprecated banner ----------------------------------- */
.deprecated-banner {
  background: var(--shell-red-50);
  border: 1px solid rgba(221,29,33,.30);
  border-left: 3px solid var(--shell-red-500);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--color-text-strong);
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--shell-grey-900);
  color: var(--shell-grey-100);
  border-top: 3px solid var(--shell-yellow-200);
  font-size: .7rem;
  padding: 14px 20px;
  text-align: center;
  margin-top: auto;
  flex-shrink: 0;
}
.site-footer a { color: var(--shell-grey-100); }

/* --- Quick-links row (new) ------------------------------- */
.quick-links {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--shell-night-600) !important;
  transition: background .12s, border-color .12s, box-shadow .12s;
}
.quick-links a:hover {
  background: var(--shell-night-50);
  border-color: var(--shell-night-600);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.quick-links a svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .main-wrap { padding: 12px 12px 20px; }
}

/* =========================================================
   Home page — simplified hero + 3 action tiles + info cards
   (Shell tokens: White canvas, Shell Yellow anchor, Night accent)
   ========================================================= */

/* --- Hero ------------------------------------------------ */
.hero {
  text-align: center;
  padding: 28px 16px 24px;
  margin: 14px 0 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--shell-yellow-200);
}
.hero-title {
  font-family: var(--font-headline);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-text-strong);
  letter-spacing: 0;
  margin-bottom: 2px;
}
.hero-subtitle {
  font-size: .95rem;
  font-weight: 600;
  color: var(--shell-night-600);
  margin-bottom: 8px;
}
.hero-tagline {
  font-size: .9rem;
  color: var(--color-text);
  max-width: 520px;
  margin: 0 auto 18px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-on-primary) !important;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .12s, box-shadow .15s, background .15s;
}
.hero-cta:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-1px);
}
.hero-cta svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hero-version {
  font-size: .8rem;
  color: var(--color-text);
  margin-top: 10px;
}

/* --- Action grid (3 tiles) ------------------------------- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  list-style: none;
  padding: 0;
}
.action-grid > li { display: flex; }
.action-grid > li > .action-tile { width: 100%; }
.action-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 16px 14px;
  text-align: center;
  color: var(--color-text) !important;
  text-decoration: none;
  transition: box-shadow .18s, transform .18s, border-color .18s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.action-tile:hover {
  border-color: var(--shell-yellow-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.action-tile h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin: 4px 0 6px;
}
.action-tile p {
  font-size: .82rem;
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.action-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--shell-night-600);
  letter-spacing: 0;
}
.action-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-alt);
  margin-bottom: 8px;
  position: relative;
}
.action-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px dashed var(--shell-yellow-300);
  opacity: 0;
  transition: opacity .2s;
}
.action-tile:hover .action-icon::after { opacity: 1; }
.action-icon svg {
  width: 22px; height: 22px;
  stroke: var(--shell-night-600); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* --- Info card (Recommended Upgrade / About) ------------- */
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px 14px;
  margin: 0 0 14px;
  border-left: 3px solid var(--shell-yellow-200);
}
.info-card h2 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin-bottom: 8px;
}
.info-card p { font-size: .88rem; margin-bottom: .55em; }
.info-card .req-list { margin: 4px 0 4px; }
.info-card-foot {
  font-size: .78rem !important;
  color: var(--color-text-muted);
  margin-top: 4px !important;
}

/* --- Responsive (home extras) ---------------------------- */
@media (max-width: 768px) {
  .action-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.5rem; }
  .hero { padding: 22px 12px 20px; }
}

/* --- EULA download gate (modal) -------------------------- */
/* Native <button> reset so .btn matches the anchor buttons */
button.btn {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  line-height: inherit;
}
button.btn[disabled] {
  background: var(--shell-grey-100);
  color: var(--color-text-muted) !important;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}
button.btn-outline { background: transparent; }
button.btn-outline[disabled] { border-color: var(--shell-grey-200); background: transparent; }

body.eula-open { overflow: hidden; }

.eula-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41, 41, 41, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2000;
}
.eula-overlay[hidden] { display: none; }

.eula-dialog {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--shell-yellow-200);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}
.eula-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.eula-head h2 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-strong);
}
.eula-close {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.eula-close:hover { color: var(--color-text-strong); }

.eula-instruction {
  font-size: .82rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
.eula-instruction #eula-target { font-family: 'Shell Bold', var(--font-body); }

.eula-frame {
  width: 100%;
  height: 320px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--shell-white);
  flex: 1 1 auto;
  min-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  text-align: center;
}
.eula-frame:focus-visible {
  outline: 2px solid var(--shell-night-600);
  outline-offset: -2px;
}
.eula-page {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}
.eula-page:last-child { margin-bottom: 0; }

/* Native PDF viewer fallback (used when PDF.js cannot run, e.g. file://). */
.eula-frame--native { padding: 0; overflow: hidden; }
.eula-native {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.eula-pdf-link {
  font-size: .76rem;
  margin: 8px 0 10px;
}

.eula-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
  color: var(--color-text-strong);
  padding: 8px 10px;
  background: var(--shell-yellow-50);
  border: 1px solid var(--shell-yellow-300);
  border-radius: var(--radius);
}
.eula-agree input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--shell-night-600);
  flex-shrink: 0;
}
.eula-agree input[type="checkbox"]:disabled { cursor: not-allowed; pointer-events: none; }

.eula-hint {
  margin: 8px 0 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-danger);
}
.eula-hint[hidden] { display: none; }

.eula-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.eula-actions .btn { padding: 7px 18px; font-size: .82rem; }

@media (max-width: 768px) {
  .eula-frame { height: 50vh; }
  .eula-actions { flex-direction: column-reverse; }
  .eula-actions .btn { width: 100%; text-align: center; }
}
