/* Change the Django admin header bar */
#header {
    background-color: #ccc; /* Example: deep blue */
    color: #333;
}

/* Change the header title and links to white */
#header a:link,
#header a:visited,
#header #site-name a {
    color: #333;
    text-decoration: none;
}

/* Optional: tweak hover */
#header a:hover {
    color: #F00; /* yellow hover for contrast */
}
