/* Style sheet for relational database elements -- 
   tables, schemas, keys, and queries 
*/

table.dbtable {
 border: thin solid blue;
 width: 45%;
 height: 45%;
}

table.dbtable > caption {
  margin-top: 1ex;
}

table.dbtable th {
  text-align: left;
}

table.dbtable td, 
table.dbtable th, 
table.dbtable caption {
 border: thin solid blue;
}

th.key, span.key {
  text-decoration: underline;
}

div.schema {
  background-color: silver;
  border: thin solid yellow;
  margin: 6px 0px; /* vertical horizontal */
  padding: 6px 12px;
  /*  padding-left: 1em; */
}

div.schema .comment, div.schema .comment caption {
  background-color: rgb(211, 211, 230); /* lighter gray with hint of blue */
  border: thin dotted white;
  margin: 5px 2em; /* vertical horizontal */
  padding: 5px;
}

div.schema .view {
  background-color: rgb(211, 211, 230); /* lighter gray with hint of blue */
  border: thin dotted white;
  margin: 5px 2em; /* vertical horizontal */
  padding: 5px;
}

pre.query {
 border: thin solid white;
 padding-left: 1em;
 color: black;
 background-color: yellow;
}

