body[data-page="resources"] .resource-stage-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body[data-page="resources"] .resource-stage-copy small {
  color: #61717e;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

body[data-page="resources"] .worksheet-library-note {
  max-width: 660px;
  margin: 10px auto 20px;
  color: #526675;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

body[data-page="resources"] .worksheet-groups {
  display: grid;
  gap: 0;
  margin-top: 10px;
}

body[data-page="resources"] .worksheet-group {
  min-width: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(16, 40, 58, 0.11);
}

body[data-page="resources"] .worksheet-group + .worksheet-group {
  margin-top: 7px;
}

body[data-page="resources"] .worksheet-group-label {
  margin: 0;
  color: #9a6b16;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="resources"] .worksheet-fields > .wide {
  grid-column: 1 / -1;
}

body[data-page="resources"] .worksheet-document-row {
  min-width: 0;
  margin: 0;
  padding: 15px 0 17px;
  border: 0;
  border-bottom: 1px solid rgba(16, 40, 58, 0.11);
}

body[data-page="resources"] .worksheet-document-row:first-child {
  padding-top: 0;
}

body[data-page="resources"] .worksheet-document-row legend {
  width: 100%;
  padding: 0;
  color: #17384a;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
}

body[data-page="resources"] .worksheet-document-hint {
  margin: 4px 0 10px !important;
  color: #61717e !important;
  font-size: 0.78rem !important;
  line-height: 1.42 !important;
  text-align: left !important;
}

body[data-page="resources"] .worksheet-status-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 139, 68, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

body[data-page="resources"] .worksheet-status-option {
  position: relative;
  display: block !important;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}

body[data-page="resources"] .worksheet-status-option input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body[data-page="resources"] .worksheet-fields .worksheet-status-option > span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 7px !important;
  border: 0;
  border-radius: 0;
  color: #315062;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 850;
  line-height: 1 !important;
  text-align: center !important;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

body[data-page="resources"] .worksheet-status-option + .worksheet-status-option span {
  border-left: 1px solid rgba(184, 139, 68, 0.28);
}

body[data-page="resources"] .worksheet-status-option[data-status="ready"] input:checked + span {
  color: #ffffff;
  background: #08716d;
  box-shadow: inset 0 -3px 0 rgba(4, 73, 70, 0.34);
}

body[data-page="resources"] .worksheet-status-option[data-status="waiting"] input:checked + span {
  color: #ffffff;
  background: #a7782f;
  box-shadow: inset 0 -3px 0 rgba(91, 59, 12, 0.28);
}

body[data-page="resources"] .worksheet-status-option[data-status="not-needed"] input:checked + span {
  color: #ffffff;
  background: #526b78;
  box-shadow: inset 0 -3px 0 rgba(27, 48, 59, 0.28);
}

body[data-page="resources"] .worksheet-status-option input:focus-visible + span {
  outline: none;
  box-shadow: inset 0 0 0 3px #d4ad67;
}

body[data-page="resources"] .worksheet-status-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 14px;
  margin: 12px 0 0;
  color: #47606d;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

body[data-page="resources"] .worksheet-status-summary-item {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

body[data-page="resources"] .worksheet-status-summary-item strong {
  color: #14354a;
  font-size: 0.9rem;
  font-weight: 900;
}

body[data-page="resources"] .worksheet-status-summary-item.is-ready strong {
  color: #08716d;
}

body[data-page="resources"] .worksheet-status-summary-item.is-waiting strong {
  color: #a7782f;
}

body[data-page="resources"] .worksheet-status-summary-item.is-not-needed strong {
  color: #526b78;
}

body[data-page="resources"] .worksheet-status-summary[hidden] {
  display: none !important;
}

@media (hover: hover) {
  body[data-page="resources"] .worksheet-status-option:hover input:not(:checked) + span {
    color: #173f4d;
    background: rgba(237, 247, 245, 0.92);
  }
}

body[data-page="resources"] .worksheet-document-row > .worksheet-document-detail {
  display: grid !important;
  gap: 6px !important;
  margin-top: 13px !important;
  color: #315062 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

body[data-page="resources"] .worksheet-document-detail.is-dropdown-open,
body[data-page="resources"] .worksheet-field.is-dropdown-open {
  position: relative;
  z-index: 3;
}

body[data-page="resources"] .worksheet-fields select.worksheet-native-select {
  display: none !important;
}

body[data-page="resources"] .worksheet-custom-select {
  display: grid;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(184, 139, 68, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow:
    0 8px 18px rgba(16, 40, 58, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body[data-page="resources"] .worksheet-custom-trigger {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) 20px !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 9px 12px !important;
  border: 0 !important;
  border-radius: 7px !important;
  color: #17384a !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 247, 239, 0.9)) !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 0.9rem !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  transform: none !important;
  cursor: pointer;
}

body[data-page="resources"] .worksheet-custom-trigger::before {
  content: "";
  grid-column: 1;
  width: 20px;
}

body[data-page="resources"] .worksheet-custom-value {
  grid-column: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

body[data-page="resources"] .worksheet-custom-chevron {
  grid-column: 3;
  justify-self: center;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 140ms ease, margin 140ms ease;
}

body[data-page="resources"] .worksheet-custom-select.is-open .worksheet-custom-trigger {
  border-radius: 7px 7px 0 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #14354a 0%, #0b5558 58%, #0a6b68 100%) !important;
}

body[data-page="resources"] .worksheet-custom-select.is-open .worksheet-custom-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

body[data-page="resources"] .worksheet-custom-trigger:focus-visible {
  outline: 3px solid rgba(8, 113, 109, 0.18) !important;
  outline-offset: 2px !important;
}

body[data-page="resources"] .worksheet-custom-menu {
  display: grid;
  max-height: 238px;
  overflow-y: auto;
  scroll-margin-block: 12px;
  padding: 5px;
  border-top: 1px solid rgba(184, 139, 68, 0.34);
  border-radius: 0 0 7px 7px;
  background: rgba(255, 253, 248, 0.99);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  scrollbar-color: #0a6b68 rgba(184, 139, 68, 0.12);
  scrollbar-width: thin;
}

body[data-page="resources"] .worksheet-custom-menu[hidden] {
  display: none !important;
}

body[data-page="resources"] .worksheet-custom-option {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #294a5a !important;
  background: transparent !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  transform: none !important;
  cursor: pointer;
}

body[data-page="resources"] .worksheet-custom-option + .worksheet-custom-option {
  border-top: 1px solid rgba(16, 40, 58, 0.08) !important;
}

body[data-page="resources"] .worksheet-custom-option:is(:hover, :focus-visible) {
  color: #0b5558 !important;
  background: rgba(226, 243, 240, 0.88) !important;
  outline: none !important;
}

body[data-page="resources"] .worksheet-custom-option.is-selected {
  color: #ffffff !important;
  background: #08716d !important;
}

body[data-page="resources"] .worksheet-document-detail[hidden] {
  display: none !important;
}

body[data-page="resources"] .worksheet-handoff-note {
  margin: 0 !important;
  color: #61717e !important;
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

body[data-page="resources"] .worksheet-bottom-close {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 17px auto 0 !important;
  padding: 5px 2px 4px !important;
  border: 0 !important;
  border-bottom: 2px solid rgba(8, 113, 109, 0.42) !important;
  border-radius: 0 !important;
  color: #08716d !important;
  -webkit-text-fill-color: #08716d !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  cursor: pointer;
  transform: none !important;
}

body[data-page="resources"] .worksheet-bottom-close:is(:hover, :active) {
  color: #14354a !important;
  -webkit-text-fill-color: #14354a !important;
  border-bottom-color: #c59a54 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-page="resources"] .worksheet-bottom-close:focus-visible {
  outline: 2px solid rgba(8, 113, 109, 0.34) !important;
  outline-offset: 3px !important;
}

@media (max-width: 760px) {
  body[data-page="resources"][data-page] main {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: min(calc(100% - 20px), 720px) !important;
    max-width: 720px !important;
    margin: 22px auto 40px !important;
    padding: 5px 0 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(198, 161, 95, 0.38) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow:
      0 18px 38px rgba(21, 48, 71, 0.105),
      inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  }

  body[data-page="resources"][data-page] main::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto !important;
    z-index: 3 !important;
    display: block !important;
    height: 5px !important;
    background: linear-gradient(90deg, #14354a 0%, #0a6b68 58%, #c6a15f 100%) !important;
    pointer-events: none !important;
  }

  body[data-page="resources"][data-page] :is(.page-hero, #resources.resources) {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body[data-page="resources"][data-page] .page-hero {
    padding: 30px 20px 27px !important;
    text-align: center !important;
  }

  body[data-page="resources"][data-page] .page-hero::before,
  body[data-page="resources"][data-page] .page-hero::after {
    display: none !important;
  }

  body[data-page="resources"][data-page] #resources.resources {
    padding: 27px 20px 20px !important;
    border-top: 1px solid rgba(21, 48, 71, 0.11) !important;
  }

  body[data-page="resources"][data-page] .page-hero h1 {
    max-width: 360px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2rem, 9.8vw, 2.38rem) !important;
    line-height: 1.03 !important;
    text-align: center !important;
    text-wrap: balance;
  }

  body[data-page="resources"][data-page] .page-hero > p:not(.eyebrow) {
    max-width: 360px !important;
    margin: 12px auto 0 !important;
    font-size: 0.93rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }

  body[data-page="resources"][data-page] #resources > .section-heading {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    text-align: center !important;
  }

  body[data-page="resources"][data-page] #resources > .section-heading :is(.eyebrow, h2, p) {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  body[data-page="resources"][data-page] #resources > .section-heading h2 {
    font-size: clamp(1.52rem, 7.1vw, 1.82rem) !important;
    line-height: 1.09 !important;
    text-wrap: balance;
  }

  body[data-page="resources"][data-page] #resources > .section-heading > p:not(.eyebrow) {
    max-width: 360px !important;
    font-size: 0.89rem !important;
    line-height: 1.48 !important;
  }

  body[data-page="resources"][data-page] .worksheet-library-single > section > :is(h3, p),
  body[data-page="resources"][data-page] .worksheet-builder > div:first-child > :is(h3, p) {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  body[data-page="resources"][data-page] .worksheet-library-single > section > h3,
  body[data-page="resources"][data-page] .worksheet-builder > div:first-child > h3 {
    max-width: 360px !important;
    text-wrap: balance;
  }

  body[data-page="resources"] .resources > .section-heading {
    margin-bottom: 16px !important;
  }

  body[data-page="resources"] .resource-stage-bridge {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(16, 40, 58, 0.12);
    border-bottom: 1px solid rgba(16, 40, 58, 0.12);
    background: transparent;
  }

  body[data-page="resources"] .resource-stage-bridge > a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    min-height: 62px;
    padding: 9px 10px;
    color: #10283a;
    text-decoration: none;
  }

  body[data-page="resources"] .resource-stage-bridge > a:nth-child(2) {
    border-left: 1px solid rgba(16, 40, 58, 0.11);
  }

  body[data-page="resources"] .resource-stage-bridge > a:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 34px auto;
    justify-content: center;
    border-top: 1px solid rgba(16, 40, 58, 0.11);
  }

  body[data-page="resources"] .resource-stage-bridge > a:is(:hover, :focus-visible) {
    color: #075e5b;
    background: rgba(8, 113, 109, 0.065);
    outline: 0;
  }

  body[data-page="resources"] .resource-stage-bridge > a:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(8, 113, 109, 0.48);
  }

  body[data-page="resources"] .resource-stage-index {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 139, 68, 0.55);
    border-radius: 50%;
    color: #0a5d5b;
    background: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  body[data-page="resources"] .resource-stage-bridge strong {
    min-width: 0;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: left;
  }

  body[data-page="resources"] .resource-grid {
    border-top: 0 !important;
  }

  body[data-page="resources"] .resource-grid article,
  body[data-page="resources"] .resource-grid article.resource-feature {
    padding: 17px 2px !important;
  }

  body[data-page="resources"] .resource-grid article > a {
    position: relative !important;
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 44px !important;
    margin-top: 5px !important;
    padding: 11px 38px 11px 0 !important;
    text-decoration: none !important;
  }

  body[data-page="resources"] .resource-grid article > a::after {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 1px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(184, 139, 68, 0.52);
    border-radius: 50%;
    color: #08716d;
    background: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
  }

  body[data-page="resources"] .resource-grid article > a[target="_blank"]::after {
    content: "\2197";
  }

  body[data-page="resources"] .resource-grid article > a:is(:hover, :focus-visible)::after {
    border-color: #08716d;
    color: #ffffff;
    background: #08716d;
  }

  body[data-page="resources"] .worksheet-library-single {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 24px 2px 0 !important;
  }

  body[data-page="resources"] .worksheet-library-single > section {
    padding: 0 !important;
  }

  body[data-page="resources"] .worksheet-library-single .worksheet-list,
  body[data-page="resources"] .worksheet-library-single .worksheet-list.compact {
    margin-top: 10px !important;
  }

  body[data-page="resources"] .worksheet-list a {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 30px !important;
    column-gap: 10px !important;
    row-gap: 4px !important;
    min-height: 70px !important;
    padding: 13px 2px !important;
    border-bottom: 1px solid rgba(16, 40, 58, 0.11) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body[data-page="resources"] .worksheet-list a::after {
    content: "\2192" !important;
    display: grid !important;
    grid-column: 2;
    grid-row: 1 / span 2;
    place-items: center;
    align-self: center;
    width: 28px;
    height: 28px;
    margin: 0 !important;
    border: 1px solid rgba(184, 139, 68, 0.52);
    border-radius: 50%;
    color: #08716d;
    background: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
  }

  body[data-page="resources"] .worksheet-list a strong,
  body[data-page="resources"] .worksheet-list a span {
    grid-column: 1;
  }

  body[data-page="resources"] .worksheet-list a {
    font-weight: 400 !important;
  }

  body[data-page="resources"] .worksheet-list a strong {
    font-weight: 800 !important;
  }

  body[data-page="resources"] .worksheet-list a span {
    color: #536879 !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;
  }

  body[data-page="resources"] .worksheet-list a:is(:hover, :focus-visible) {
    padding-right: 2px !important;
    padding-left: 8px !important;
    outline: 0;
    background: rgba(8, 113, 109, 0.055) !important;
  }

  body[data-page="resources"] .worksheet-list a:focus-visible {
    box-shadow: inset 3px 0 0 rgba(8, 113, 109, 0.8) !important;
  }

  body[data-page="resources"] .worksheet-list a[aria-current="true"] {
    padding-right: 2px !important;
    padding-left: 8px !important;
    background:
      linear-gradient(90deg, rgba(8, 113, 109, 0.1), rgba(204, 164, 91, 0.045) 72%, transparent) !important;
    box-shadow: inset 3px 0 0 #08716d !important;
  }

  body[data-page="resources"] .worksheet-list a[aria-current="true"]::after {
    border-color: #08716d;
    color: #ffffff;
    background: #08716d;
  }

  body[data-page="resources"] .worksheet-builder[hidden] {
    display: none !important;
  }

  body[data-page="resources"] .worksheet-builder {
    scroll-margin-top: 14px;
    margin-top: 0 !important;
    padding: 20px 2px 0 !important;
    border-top: 1px solid rgba(16, 40, 58, 0.11) !important;
  }

  body[data-page="resources"] .worksheet-builder > div:first-child {
    position: relative;
    padding: 0 2px;
  }

  body[data-page="resources"] .worksheet-builder > div:first-child::before {
    content: "";
    display: block;
    width: 92px;
    height: 5px;
    margin: 0 auto 15px;
    border-radius: 999px;
    background: linear-gradient(90deg, #14354a 0%, #08716d 62%, #c6a15f 100%);
  }

  body[data-page="resources"] .worksheet-builder .worksheet-close {
    position: absolute;
    top: -2px;
    right: 0;
    display: grid;
    place-items: center;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(184, 139, 68, 0.56) !important;
    border-radius: 50% !important;
    color: #08716d !important;
    -webkit-text-fill-color: #08716d !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 4px 11px rgba(20, 53, 74, 0.08) !important;
    cursor: pointer;
    transform: none !important;
  }

  body[data-page="resources"] .worksheet-builder .worksheet-close-icon {
    display: block;
    width: 8px;
    height: 8px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: translateY(2px) rotate(-135deg);
  }

  body[data-page="resources"] .worksheet-builder .worksheet-close:is(:hover, :active) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #08716d !important;
    background: #08716d !important;
    box-shadow: 0 5px 12px rgba(8, 113, 109, 0.16) !important;
    transform: none !important;
  }

  body[data-page="resources"] .worksheet-builder .worksheet-close:focus-visible {
    outline: 2px solid #c59a54 !important;
    outline-offset: 2px !important;
  }

  body[data-page="resources"] #worksheetDescription {
    margin: 8px 0 0 !important;
    color: #4f6374 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  body[data-page="resources"] .worksheet-form {
    margin-top: 18px !important;
  }

  body[data-page="resources"] .worksheet-fields {
    gap: 14px !important;
  }

  body[data-page="resources"] .worksheet-fields label {
    gap: 7px !important;
    color: #17384a !important;
    font-size: 0.84rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
  }

  body[data-page="resources"][data-page] .worksheet-builder .worksheet-form .worksheet-fields :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(184, 139, 68, 0.34) !important;
    border-radius: 8px !important;
    color: #10283a !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.82)),
      #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  body[data-page="resources"][data-page] .worksheet-builder .worksheet-form .worksheet-fields textarea {
    min-height: 108px !important;
    resize: vertical;
  }

  body[data-page="resources"][data-page] .worksheet-builder .worksheet-form .worksheet-fields :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select):focus {
    border-color: #08716d !important;
    outline: 0 !important;
    box-shadow:
      0 0 0 3px rgba(8, 113, 109, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  body[data-page="resources"] .worksheet-actions {
    gap: 10px !important;
    margin-top: 18px !important;
  }

  body[data-page="resources"] #attachWorksheetButton {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 8px !important;
    transform: none !important;
  }

  body[data-page="resources"] #attachWorksheetButton:is(:hover, :active) {
    transform: none !important;
  }

  body[data-page="resources"] .worksheet-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none !important;
  }

  body[data-page="resources"] #worksheetMessage:empty {
    display: none;
  }

  body[data-page="resources"] #worksheetMessage:not(:empty) {
    display: block;
    margin: 0;
    padding: 10px 12px;
    border-left: 3px solid #08716d;
    color: #17384a;
    background: rgba(8, 113, 109, 0.065);
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  }

  body[data-page="resources"] footer {
    margin-top: 0 !important;
  }
}

@media (max-width: 360px) {
  body[data-page="resources"][data-page] main {
    width: calc(100% - 16px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="resources"] .resource-stage-bridge a,
  body[data-page="resources"] .resource-grid article > a,
  body[data-page="resources"] .worksheet-list a {
    scroll-behavior: auto;
    transition: none !important;
  }
}
