/* Highest Points Bottom Sheet Styles */

.highest-points {
  padding: 0 24px 24px;
}

.highest-points-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  font-family: var(--_fonts---font-family--ibm-plex-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}

.highest-points-table th,
.highest-points-table td {
  padding: 16px 12px;
  vertical-align: middle;
}

.highest-points-table th {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 12px 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highest-points-table tbody tr {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.highest-points-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.highest-col-elev {
  width: 100px;
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  color: var(--yellow);
}

.highest-col-date {
  width: 110px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.highest-place {
  font-family: var(--_fonts---font-family--instrument-serif);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  margin-bottom: 2px;
}

.highest-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}



@media screen and (min-width: 768px) {
  .highest-points {
    padding: 0 32px 32px;
  }

  .highest-points-table {
    border-spacing: 0 6px;
  }

  .highest-points-table th,
  .highest-points-table td {
    padding: 18px 16px;
  }

  .highest-col-elev {
    width: 120px;
    font-size: 16px;
  }

  .highest-place {
    font-size: 18px;
  }
}


