/* Some notes on the standard.css:

   This CSS controls all the styling on the "Catalog" pages. So, at the time of writing
   this, this controls the styling on the first page you see. In fact, it's not JUST this
   file; rather, this file overrides the tds.css file generated by THREDDS. So, if you want
   to edit something on the catalog page, you may have to actually look at the source while it's
   up in the browser, find what element that points to in the catalog.html file (also generated by
   THREDDS), then inject some styling in here to make it do what you want. An absolutely
   workflow.

   What does it mean to have a file be "generated by THREDDS"? Well, the file is shipped with
   the TDS server out of the box. So, you don't actually have to have the file to make it do
   anything, since the file will exist in the container no matter what (at least, that's how
   I unserstand it at the moment).

*/

/* Edited by Dalton 06-13-2019: remove the "Hosted by RPS Group" stuff */
body > div > div:nth-child(2) > div > h3 {
  display: none;
}

/* Edited by Dalton 06-14-2019: improve spacing for catalog table spacing */
table {
    border-spacing: 0;
    margin: 2em 0;
}

/* Edited by Dalton 06-14-2019: add colored bar (deep blue),
   white text, font size, font weight. This affects the "Catalog" element. */
div.section-header {
    background: #003087;
    padding: 5px;
    color: #FFFFFF; // white
    font-size: 14pt;
    font-weight: bold;
}

div.container #header {
    top: 0;
    position: absolute;
    margin-top: 1em
    
}

div.container #header .comt-header {
   text-align: center;
}
