/* styles.css */

/* Ensure the map fills the entire viewport */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

#mapone {
  width: 100%;
  height: 100%;
}

.table_component {
  overflow: auto;
  width: 300px;
}

.table_component table {
  border: 1px solid #dededf;
  height: 100%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
}

.table_component caption {
  caption-side: top;
  text-align: left;
}

.table_component th {
  border: 1px solid #dededf;
  background-color: #eceff1;
  color: #000000;
  padding: 5px;
}

.table_component td {
  border: 1px solid #dededf;
  background-color: #ffffff;
  color: #000000;
  padding: 5px;
}

/* "grey out" empty cells */
.table_component td.notdefined {
  background-color: #eceff1 !important;
}