* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Include padding and border in an element's total width and height */
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

:root {
  --dart-green: #2e8439;
  --black: #000000;
  --white: #ffffff;
}

body {
  display: flex;
  min-height: 100vh;
  color: var(--white);
  background-color: var(--dart-green);
}

.container {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.target {
  display: contents;
}

.row {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: var(--black);
  position: relative;
  font-size: 16px;
  color: white;
  border: none;
}

.icon {
  font-size: 30px;
}

.center {
  justify-content: center;
}

.stationName {
  font-size: 20px;
}

.arrivalTime {
  font-size: 30px;
}

.pointy {
  cursor: pointer;
}

.pointy:hover {
  opacity: 90%;
}

.pointy:focus {
  outline: none;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background-color: var(--dart-green);
  opacity: 50%;
}

.missed {
  opacity: 0.5;
  text-decoration: line-through;
}

.geoIndicator {
  width: 5px;
  height: 5px;
  background-color: var(--dart-green);
  border-radius: 50%;
  animation: flash 1s infinite alternate;
  margin: 10px;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.walkModeToggle {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
