/* Set the full page background color (optional) */
body {
    background-color: #f9f9f9 !important; /* You can change or remove this */
}

/* Set the header background color */
.pkp_structure_head {
    background-color: #fab2fa !important;
}

/* Ensure header text (site title, menu links, etc.) is readable */
.pkp_structure_head,
.pkp_structure_head a,
.pkp_navigation_primary a,
.pkp_navigation_user a {
    color: #000 !important;  /* black text for better contrast */
}

/* Optional: Change hover state of navigation links */
.pkp_navigation_primary a:hover,
.pkp_navigation_user a:hover {
    color: #333 !important;
}

/* Optional: Style for main content block (gives contrast) */
.pkp_structure_main {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
}
