/* Compact Form Styles */
.form-input,
.form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 6px;
  font-size: 0.875rem; /* text-sm */
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: #b2b9b7; /* green-300 */
  box-shadow: 0 0 0 2px #a7f3d0; /* green-300 ring */
}

button {
  transition: background-color 0.3s ease;
}


body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #FFEFBA, #FFFFFF);
  color: #333;
}

h2 {
  font-size: 2.5rem;
  color: #FF4500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

p, ul {
  font-size: 1rem;
  line-height: 1.6;
}

ul {
  margin-left: 20px;
}

a.button {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: #FF4500;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

a.button:hover {
  background: #FF6347;
}

.race-highlight {
  color: #FF4500;
  font-weight: bold;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
  background-color: #FF4500;
}

header h1 {
  color: #fff;
  font-size: 1.5rem;
}

.custom-link {
  color: #FF4500; /* Bright orange for better visibility */
  font-weight: bold; /* Bold for emphasis */
  text-decoration: none; /* Remove underline */
}

.custom-link:hover {
  color: #E03E00; /* Darker shade for hover effect */
  text-decoration: underline; /* Add underline on hover */
}

.fun-run-event {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  color: #343a40;
}

.fun-run-event h2 {
  text-align: center;
  color: #007bff;
}

.fun-run-event ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style: disc;
  line-height: 1.6;
}

.fun-run-event a {
  color: #007bff;
  text-decoration: none;
}

.fun-run-event a:hover {
  text-decoration: underline;
}

.qr-code {
  text-align: center;
  margin-top: 20px;
}

.qr-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.qr-wrapper img {
  max-width: 200px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.qr-wrapper img {
  width: 60%; /* Image takes full width of its container */
  max-width: 500px; /* Prevents it from being too large */
  height: auto;
}

