/* Copied Plumage Tokens - Keep only necessary ones or refine later */
:root {
  /* Radii */
  --plmg-border-radius-sharp: 0px;
  --plmg-border-radius-xs: 2px;
  --plmg-border-radius-s: 4px;
  --plmg-border-radius-m: 8px;
  --plmg-border-radius-l: 16px;
  --plmg-border-radius-xl: 32px;
  --plmg-border-radius-circle: 50%;
  --plmg-border-radius-pill: 9999px;

  /* Spacing */
  --plmg-spacing-x0-125: 2px;
  --plmg-spacing-x0-25: 4px;
  --plmg-spacing-x0-5: 8px;
  --plmg-spacing-x0-75: 12px;
  --plmg-spacing-x1: 16px;
  --plmg-spacing-x1-5: 24px;
  --plmg-spacing-x2: 32px;
  --plmg-spacing-x2-5: 40px;
  --plmg-spacing-x3: 48px;
  --plmg-spacing-x4: 64px;
  --plmg-spacing-x5: 80px;
  --plmg-spacing-x6: 96px;
  --plmg-spacing-x10: 160px;

  /* Fonts */
  --plmg-font-family-sans: 'Commissioner', sans-serif;
  --plmg-font-size-x1-5: 1.5rem;
  --plmg-font-size-x1-25: 1.25rem;
  --plmg-font-size-x1-125: 1.125rem;
  --plmg-font-size-x1: 1rem;
  --plmg-font-weight-regular: 400;
  --plmg-font-weight-semibold: 600;

  /* Borders */
  --plmg-border-width-s: 1px;
  --plmg-border-width-m: 2px;

  /* Colors - Neutral */
  --plmg-color-text-neutral: #2c2e36;
  --plmg-color-text-neutral-dark: #ffffff;
  --plmg-color-background-neutral: #ffffff;
  --plmg-color-background-neutral-hover: #f8f8f9;
  --plmg-color-background-neutral-active: #f1f1f3;
  --plmg-color-border-neutral: #8b909e;

  /* Colors - Primary (for buttons) */
  --plmg-color-text-primary-strong: #006b76;
  --plmg-color-background-primary: #ccebee;
  --plmg-color-background-primary-strong: #008290;
  --plmg-color-background-primary-strong-hover: #006b76;
  --plmg-color-background-primary-strong-active: #00545d;
  --plmg-color-border-primary: #0099a9;

  /* Transitions (Optional, but good for buttons) */
  --plmg-transition-duration: 0.2s;
  --plmg-transition-timing: ease-in-out;
}

body {
  margin: 0;
  padding: 0 var(--plmg-spacing-x1);
  font-family: var(--plmg-font-family-sans, sans-serif);
  font-size: 12px;
  box-sizing: border-box;
  color: var(--plmg-color-text-neutral);
}

.main-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 80px;
  width: 80px;
  margin-bottom: var(--plmg-spacing-x2-5);
}

.main-content {
  font-style: normal;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.checkbox-label {
  font-size: var(--plmg-font-size-x1-25);
  color: var(--plmg-color-text-neutral);
}

input[type="checkbox"] {
  scale: 1.5;
  margin-right: var(--plmg-spacing-x0-5);
}

h1 {
  font-weight: var(--plmg-font-weight-regular);
  font-size: var(--plmg-font-size-x1-5);
}

.iframe {
  width: 100%;
  min-height: 25vh;
  height: 25vh;
  max-height: fit-content;
  border: 2px solid var(--plmg-color-border-neutral);
  border-radius: var(--plmg-border-radius-m);
  margin-top: 40px;
  margin-bottom: var(--plmg-spacing-x1);
}
input[type="checkbox"] {
  font-size: var(--plmg-font-size-x-1-25);
  font-weight: var(--plmg-font-weight-regular);
}

.logo {
  width: 80px;
  height: 80px;
}

.button-container {
  display: flex;
  flex-flow: row wrap; /* Allow wrapping on small screens */
  justify-content: flex-end;
  gap: var(--plmg-spacing-x0-75);
  margin-top: var(--plmg-spacing-x2-5);
}

/* --- NEW BUTTON STYLES --- */
.btn {
  display: flex; 
  align-items: center;
  justify-content: center;
  padding: var(--plmg-spacing-x0-75) var(--plmg-spacing-x1-5); /* Adjusted padding */
  font-family: var(--plmg-font-family-sans, sans-serif);
  font-size: var(--plmg-font-size-x1-125);
  font-weight: var(--plmg-font-weight-regular);
  border-radius: var(--plmg-border-radius-s);
  border: var(--plmg-border-width-s) solid transparent; /* Base border */
  line-height: 150%;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap; /* Prevent wrapping */
  transition: background-color var(--plmg-transition-duration) var(--plmg-transition-timing),
              border-color var(--plmg-transition-duration) var(--plmg-transition-timing),
              color var(--plmg-transition-duration) var(--plmg-transition-timing);
  -webkit-appearance: none; /* Remove default browser styles */
  -moz-appearance: none;
  appearance: none;
}

.btn:focus-visible {
  outline: 2px solid var(--plmg-color-border-primary); /* Basic focus indicator */
  outline-offset: 2px;
}

/* Primary Button (Accept) */
.btn-primary {
  background-color: var(--plmg-color-background-primary-strong);
  border-color: var(--plmg-color-background-primary-strong);
  color: var(--plmg-color-text-neutral-dark); /* White text */
}

.btn-primary:hover {
  background-color: var(--plmg-color-background-primary-strong-hover);
  border-color: var(--plmg-color-background-primary-strong-hover);
  color: var(--plmg-color-text-neutral-dark);
}

.btn-primary:active {
  background-color: var(--plmg-color-background-primary-strong-active);
  border-color: var(--plmg-color-background-primary-strong-active);
  color: var(--plmg-color-text-neutral-dark);
}

/* Outline Button (Go Back) */
.btn-outline {
  background-color: var(--plmg-color-background-neutral); /* White background */
  border-color: var(--plmg-color-border-primary);
  color: var(--plmg-color-text-primary-strong);
}

.btn-outline:hover {
  background-color: var(--plmg-color-background-primary); /* Light primary bg */
  border-color: var(--plmg-color-border-primary);
  color: var(--plmg-color-text-primary-strong);
}

.btn-outline:active {
  background-color: var(--plmg-color-background-neutral-active); /* Slightly darker neutral bg */
  border-color: var(--plmg-color-border-primary);
  color: var(--plmg-color-text-primary-strong);
}

/* Disabled state (add class="disabled" or attribute disabled) */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none; /* Prevent clicks on disabled state */
}
