/* shop_spotter/static/css/admin_extra.css */

/* Change the main header background color and text color */
#header {
    background: #061830; /* Your desired dark blue */
    color: #ecf0f1;
}

/* Change the color of links in the header */
#header a:link, #header a:visited {
    color: #ffffff; /* White text */
}

/* Style the container for the logo and text */
#site-name a {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center; /* Vertically align logo and text */
}

/* Style for the new logo in the header */
.brand-logo {
    height: 45px;
    width: auto;
    margin-right: 10px;
    margin-left: -5px;
}

/* Optional: Change the background of sub-headers */
.module h2, .module caption, .inline-group h2 {
    background: #34495e; 
}