*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 1.5rem;
}

code {
  font-family: "Consolas", "Monaco", monospace;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}
.container--fluid {
  max-width: 1400px;
}
.container--narrow {
  max-width: 900px;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid > * {
  margin-bottom: 0;
}
.grid--2-col {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-col-full {
    grid-column: 1/-1;
  }
}

.btn {
  display: inline-block;
  background-color: #27ae60;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: rgb(43.6690140845, 194.8309859155, 107.4929577465);
}
.btn--secondary {
  background-color: #777;
}
.btn--secondary:hover {
  background-color: rgb(144.5, 144.5, 144.5);
}
.btn--accent {
  background-color: #3498db;
}
.btn--accent:hover {
  background-color: rgb(73.6589958159, 162.989539749, 222.8410041841);
}
.btn--dataset {
  background-color: #f39c12;
}
.btn--dataset:hover {
  background-color: rgb(244.2289156627, 166.1385542169, 42.2710843373);
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.card__title {
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-top: 0;
  color: #2c3e50;
}
.card__subtitle {
  color: #27ae60;
  margin-top: 1.5rem;
}
.card__hyper-link {
  color: blue;
  text-decoration: underline;
}

.controls {
  background: #ffffff;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .controls {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.controls__label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
  color: #666666;
}
.controls__select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}
@media (min-width: 1024px) {
  .controls--plots-alignment {
    grid-template-columns: 1fr 1fr;
  }
}
.controls--plots-alignment .controls__group {
  text-align: center;
}

.legend {
  line-height: 20px;
  color: #555;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
  opacity: 0.8;
}
.legend strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #333;
}
.legend small {
  display: block;
  margin-bottom: 0.5rem;
}

.header {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.header__title {
  margin: 0;
  font-size: 2rem;
  color: #ffffff;
}
.header__subtitle {
  margin: 5px 0 0;
  font-size: 1rem;
  opacity: 0.8;
}
.header__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .header__nav {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin-top: 0;
  }
}

.slider-container {
  margin: 1rem 0;
  text-align: center;
}
.slider-container__display {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.25rem;
  display: block;
}
.slider-container__input {
  width: 100%;
  cursor: pointer;
}

.info-icon {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  color: #3498db;
}

.formula {
  background: rgb(236.25, 236.25, 236.25);
  border-left: 4px solid #3498db;
  padding: 1rem;
  margin: 1rem 0;
  font-family: "Consolas", "Monaco", monospace;
}

#map {
  height: calc(100vh - 100px);
  width: 100%;
  z-index: 1;
}

.info-box {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 150px;
  right: 75px;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 350px;
}

.map-tooltip {
  color: #333;
}
.map-tooltip__title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: #2c3e50;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.25rem;
}
.map-tooltip__year {
  font-weight: normal;
  font-size: 0.9rem;
  color: rgb(127.5, 127.5, 127.5);
}
.map-tooltip__primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.map-tooltip__note {
  font-style: italic;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  color: #27ae60;
}
.map-tooltip__sub-note {
  font-size: 0.8rem;
  color: #999999;
  margin: -0.25rem 0 1rem 0;
}
.map-tooltip__details {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px dashed #eee;
}
.map-tooltip__detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.map-tooltip__detail-row dt {
  color: #666666;
  margin: 0;
  font-weight: 500;
}
.map-tooltip__detail-row dd {
  margin: 0;
  font-weight: bold;
}

.plots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .plots-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.chart-wrapper {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-title {
  text-align: center;
  font-weight: bold;
  color: rgb(76.5, 76.5, 76.5);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.chart {
  height: 500px;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
