/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 19 2024 | 02:24:31 */
/* CSS for table with moon data*/
#moontable {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 90%;	
  border-collapse: collapse;
  width: 100%;
}
#moontable td, .moontable th {
  border: 1px solid #ddd;
  padding: 8px;
}
#moontable tr:nth-child(even){background-color: #f2f2f2;}
#moontable tr:hover {background-color: #ddd;}
#moontable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #1E90FF; /*Dodger blue*/
  color: white;
}

/* CSS for iframe source code */
.myframe iframe {
    width: 100%;
    height: 100%;
}
.myframe {
    height: 300px;
    width: 100%;
    background-color: lightgrey;
}


