/* ===== OJS Default Theme: Footer fix ===== */

/* 1) Footer background + text color (keep footer visible) */
footer.pkp_structure_footer,
.pkp_footer,
.pkp_site_footer {
    background-color: #1800ad !important;
    color: #ffffff !important;
    border-top: none !important;
}

footer.pkp_structure_footer a,
.pkp_footer a,
.pkp_site_footer a {
    color: #ffffff !important;
}

/* 2) Remove ONLY the brand image (handle both <img> and CSS background sprite cases) */
.pkp_brand_footer img {
    display: none !important;
}

.pkp_brand_footer,
.pkp_brand_footer a {
    background: none !important;      /* kill background-sprite logo */
    text-indent: 0 !important;        /* ensure text stays normal */
    padding-left: 0 !important;       /* remove left space from sprite */
    min-height: 0 !important;
}

/* Ensure the footer container itself is never hidden */
footer.pkp_structure_footer,
.pkp_footer,
.pkp_site_footer {
    display: block !important;
}
