body {
  font-family: 'Source Sans Pro', arial, helvetica, sans-serif;
  padding-bottom: 50px;
}
h1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
li {
  margin: 25px 50px 0 0;
}
table {
  width: 1400px;
  margin: 0 50px 0 50px;
}
td {
  width: 50%;
  vertical-align: top;
  padding-right: 60px;
}
select {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hover-underline {
  text-decoration: none;
}
.hover-underline:hover {
  text-decoration: underline;
}

/* Popover CSS */
.popover {
  position: fixed;
  margin-left: 12%;
  margin-right: 12%;
  bottom: -100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  transition: bottom 0.4s ease-in-out;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}

.popover.show {
  bottom: 0;
}

.popover .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.popover-container {
  display: flex;
  justify-content: space-between;
}

.section-top {
  width: 100%;
}

.section-left {
  width: 70%;
}

.section-right {
  width: 30%;
}

.section-right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.section-right .trl {
  margin-bottom: 50px;
}

.blip {
  transition: opacity 0.3s ease-in-out;
}
.blip.hidden {
  opacity: 0;
  pointer-events: none;
}

.table-container {
  overflow-x: auto;
  padding: 20px;
  background-color: #f9f9f9;
}

.smalltext {
  font-size: 0.8em;
}

.text-center {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #45a049;
}

.gauge-container {
  z-index: -1;
}