html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-size: small;
  overflow: hidden;
  font: 10pt 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

#map {
  width: 100%;
  height: 100%;
  font: 10pt 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* As we've given the element we're displaying the layer tree within a class of
 * layer-switcher (so we can benefit from the default layer-switcher styles) we
 * need to override the position to avoid it being absolutely positioned */
.layer-switcher {
  position: initial;
}

/* Styles for the table in the soundingPlans tab */
#soundingPlans table {
  width: 100%;
  border-collapse: collapse;
  font: 10pt 'Helvetica Neue', Arial, Helvetica, sans-serif;
  margin: 10px 0;
}

#soundingPlans th,
#soundingPlans td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

#soundingPlans th {
  background-color: #f2f2f2;
  font-weight: bold;
}

#soundingPlans tr:nth-child(even) {
  background-color: #f9f9f9;
}

#soundingPlans tr:hover {
  background-color: #e0e0e0;
}

#soundingPlans p {
  margin: 10px 0;
  color: #666;
}