
/* Custom CSS — Footer only (OJS default theme)
   - Footer background: #0F2A23
   - Footer text & links: #D8B672
   - Link hover: white + underline
   - Hide OJS/PKP brand badge
*/

/* Footer background + text color */
.pkp_structure_footer_wrapper {
  background-color: #0F2A23 !important;
  color: #D8B672 !important;
}

/* Footer links: default gold, hover white + underline */
.pkp_structure_footer_wrapper a {
  color: #D8B672 !important;
  text-decoration: none;
}
.pkp_structure_footer_wrapper a:hover,
.pkp_structure_footer_wrapper a:focus {
  color: #FFFFFF !important;
  text-decoration: underline;
}

/* Hide the "Platform & workflow by OJS/PKP" brand block */
.pkp_brand_footer {
  display: none !important;
}
