/* resultsstyles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;

}

.header-container {
  background-color: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header-container a {
  text-decoration: none;
  color: #000000;
}

.runner-container {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
}

.runner {
  text-align: center;
}

.runner img {
  border-radius: 50%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  transform: scale();
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #333;
  margin-bottom: 200px;
}

th, td {
  padding: 10px;
  border: 1px solid #333;
}

th {
  background-color: #333;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.icon {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

