/* hide header, footer */
.site-header { display: none; }
.site-footer { display: none; }

/* add space above buttons */
#edit-actions {
  margin-top: 2.5em;
}

// yellow background
.page main {
  background-color: var(--uowdf-color-uo-yellow, #007030); 
}
.page main .layout {
  background-color: white;
  padding: 3%;
}

.cta-button[disabled] {
  border-color: lightgray;
  color: gray;
}
.cta-button[disabled]:hover,
.cta-button[disabled]:focus {
  background-color: inherit !important;
  color: gray !important;
  text-decoration: none !important;
}

/* reorder social media icons in footer */
.site-footer__social-links                               { display: flex; } 
.site-footer__social-links li:has( [href*="instagram"] ) { order: 1; }
.site-footer__social-links li:has( [href*="linkedin"] )  { order: 2; }
.site-footer__social-links li:has( [href*="youtube"] )   { order: 3; }
.site-footer__social-links li:has( [href*="facebook"] )  { order: 4; }
.site-footer__social-links li:has( [href*="twitter"] )   { order: 5; }
.site-footer__social-links li:has( [href*="vimeo"] )     { order: 6; }
.site-footer__social-links li:has( [href*="tiktok"] )    { order: 7; }
