/* --- NEXUS JOURNAL CUSTOM STYLES --- */

/* 1. Force Header to Nexus Navy & Gold Border */
/* This ensures it stays this way even if settings change */
.pkp_structure_head {
    background-color: #002147 !important;
    border-bottom: 4px solid #D4AF37 !important;
}

/* 2. Make Primary Buttons Gold (Matches Main Site) */
/* This targets the 'Submit', 'Save', and 'Register' buttons */
.pkp_button_primary, button.pkp_button {
    background-color: #D4AF37 !important;
    color: #000 !important; /* Black text on Gold */
    border: 1px solid #D4AF37 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    box-shadow: none !important;
}

/* 3. Button Hover Effect (Darker Gold) */
.pkp_button_primary:hover, button.pkp_button:hover {
    background-color: #b5952f !important;
    color: #000 !important;
}

/* 4. Link Colors */
/* Makes standard links Navy, and hover links Gold */
a {
    color: #002147;
    font-weight: 600;
    text-decoration: none;
}
a:hover, a:focus {
    color: #D4AF37;
}

/* 5. Clean up the Footer */
.pkp_structure_footer {
    background-color: #1a1a1a !important;
    color: #aaa !important;
    border-top: 4px solid #D4AF37;
}