/**
 *
 */
@import url("//fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import "mu.css";

:root {
  --mu-font-family-sans-serif: "Inter", system-ui, "Segoe UI", roboto, oxygen, ubuntu, cantarell, helvetica, arial, "Helvetica Neue", sans-serif, var(--mu-font-family-emoji);
  --mu-form-element-spacing-vertical: 0.35rem;
  --mu-form-element-spacing-horizontal: 0.75rem;
  --mu-font-size: 1rem;
}

/*

:root {
  --pico-font-family-sans-serif: inter, system-ui, "Segoe UI", roboto, oxygen, ubuntu, cantarell, helvetica, arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
  --pico-font-size: 87.5%;
  --pico-line-height: 1.25;
  --pico-form-element-spacing-vertical: 0.5rem;
  --pico-form-element-spacing-horizontal: 1.0rem;
  --pico-border-radius: 0.375rem;
}

@media (min-width: 576px) {
  :root {
    --pico-font-size: 87.5%;
  }
}

@media (min-width: 768px) {
  :root {
    --pico-font-size: 87.5%;
  }
}

@media (min-width: 1024px) {
  :root {
    --pico-font-size: 87.5%;
  }
}

@media (min-width: 1280px) {
  :root {
    --pico-font-size: 87.5%;
  }
}

@media (min-width: 1536px) {
  :root {
    --pico-font-size: 87.5%;
  }
}
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  --pico-font-weight: 600;
}

article {
  border: 1px solid var(--pico-muted-border-color);
  border-radius: calc(var(--pico-border-radius) * 2);
}

article > footer {
  border-radius: calc(var(--pico-border-radius) * 2);
}

.flex-center-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.table-scroll {
  overflow-x: auto;
}

.wizard-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mu-muted-border-color);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadein 0.3s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.progress-bar {
  height: 6px;
  background: var(--mu-secondary-background);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--mu-primary);
  transition: width 0.3s ease;
}

.video-placeholder {
  background: #1a1a2e;
  aspect-ratio: 16/9;
  border-radius: var(--mu-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.2s ease;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.08);
}

.video-placeholder .video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--mu-border-radius);
  font-size: 0.85rem;
}

.video-iframe {
  aspect-ratio: 16/9;
  border-radius: var(--mu-border-radius);
  border: none;
  width: 100%;
  height: 100%;
}

.video-playing {
  background: transparent;
  cursor: default;
}

.footer-flag {
  display: inline-block;
  width: 50px;
  height: 34px;
  border-radius: 3px;
  margin-right: 6px;
}

.flag-aboriginal {
  background: linear-gradient(to bottom, #000 50%, #c00 50%);
}

.flag-torres {
  background: linear-gradient(to bottom, #000 33%, #008B00 33%, #008B00 66%, #fff 66%);
}

.flag-disability {
  background: linear-gradient(135deg, #0072c6 25%, #fff 25%, #fff 50%, #0072c6 50%, #0072c6 75%, #fff 75%);
}

.flag-pride {
  background: linear-gradient(to bottom, #e40303 14%, #ff8c00 14%, #ff8c00 28%, #ffed00 28%, #ffed00 42%, #008026 42%, #008026 57%, #24408e 57%, #24408e 71%, #732982 71%);
}
