body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: sans-serif;

    max-width: 100vw;
    overflow-x: hidden;
}

pre {
    max-width: 100%;
}

.strava-login,
.reset-filter,
button {
    cursor: pointer;
    text-decoration: none;
    color: white;
    background-color: #fc5200;
    border: 1px solid #dfdfe8;
    border-radius: 3px;
    padding: 0.7em 6.5em;
    transition: filter 0.3s ease;
}

.strava-login:hover,
.reset-filter:hover,
button:hover {
    filter: brightness(0.9);
}

.reset-filter {
    background-color: white;
    color: #fc5200;
    padding: 0.5em 2.5em;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60vw;
  }
  
  .leaderboard-item {
    display: flex;
    align-items: center;
  }
  
  .leaderboard-item-bar {
    height: 1rem;
    background-color: blue;
    border-radius: 4px;
  }
  
  img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin: 0 1rem;
  }

  form {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
  }

  select {    
    border: 1px solid #ec5000;
    border-radius: 3px;
    padding: 0.7em 6.5em;
  }

  .error {
    color: red;
    font-weight: 700;
    font-size: 20px;
  }

  .distance {
    min-width: 15%;
  }