
#header {
    height:54px;
    background: url(USDLogoDocs.png) no-repeat;
}

div.image img[src="USDLogoLrgWithAlpha.png"]{
    width:550px;
}

/* Markdown does not allow for empty table headers.
 *
 * Rather than trying to construct a header-less table with embedded html,
 * we just remove the table headers with css
 */
table.doxtable th:empty {
    /* note, using "display: none" does not work well here if you have empty and
     * non-empty table header elements. */
    padding: 0;
    border: 0;
}

/* Style used for "warning banner" shown on non-release version pages, see
   also the doxygen header.html AddWarningBanner() fcn */
.non_release_version_warning {
  padding: 0.5em;
  text-align: center;
  background-color: #FFBABA;
  color: #6A0E0E;
  margin-bottom: 10px;
  font-family: var(--san-serif);
  font-weight: 400;
  font-size: 16px;
}

/* When inside #top (a flex container from doxygen-awesome), force the banner       
 to span a full row and appear before the title/nav items. */                      
#top .non_release_version_warning {                                                  
  flex: 0 0 100%;                                                                    
  order: -1;                                                                         
  margin-bottom: 0;                                                                  
}          