body {
  /* background-color: rgba(0, 0, 0, 0.99); */
  background-image: url("https://apps.binaryvikings.io/StreetRaces.png");
  background-repeat: repeat-y;
  background-size: auto 100%;
}

h1 {
  color: #FFFFFF;
  text-shadow: 6px 6px 8px rgba(167, 0, 159, 0.25);
  /* White shadow with a bit of transparency */

  font-size: 24px;
}

h3 {
  color: #FFFFFF;
  text-shadow: 6px 6px 8px rgba(167, 0, 159, 0.25);
  /* White shadow with a bit of transparency */

  font-size: 16px;
}

h2 {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

p {
  color: rgb(254, 254, 254);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

form {
  margin: 0;
  padding: 0;
}

#filterForm,
#filterFormCars {
  margin-bottom: 0;
  /* Adjust this value to remove extra bottom margin */
}

#submitButton {
  border: 1px solid black;
  background-color: rgba(167, 0, 159, 0.30);
  /* Grey transparent color */
  color: white;
  padding: 8px 16px;
  /* Adjust padding as needed */
  border-radius: 4px;
  /* Optional: Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

#submitButton:hover {
  background-color: rgba(167, 0, 159, 0.50);
  /* Darker grey on hover */
  border-color: black;
  color: #ffffff;
  /* Change text color on hover if needed */
}

.customtable {
  border-collapse: collapse;
  width: 1200px;
  background-color: #333333dd;
}

.customtable tr:nth-child(even) {
  background-color: rgb(167, 0, 159, 0.25);
}

.customtable,
.customtd,
.customth {
  border: 1px snow black;
  text-align: center;
  color: #FFFFFF;
}

/* .customth:nth-child(even),
.customtd:nth-child(even) {
  background-color: rgb(167, 0, 159, 0.25);
} */

.trr {
  border-bottom: 1px solid rgb(104, 104, 104);
}

.trr:hover {
  background-color: #d6eeee21;
}

.headertable {
  border: 0px;
  width: 1000px;
  vertical-align: middle;
}

.headline {
  color: #FFFFFF;
  text-shadow: 4px 4px 8px rgba(167, 0, 159, 0.50);
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  vertical-align: middle;
}

.negativenumber {
  color: rgb(242, 20, 20);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.positivenumber {
  color: rgb(33, 178, 71);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.zeronumber {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.disclaimer {
  font-style: italic;
  font-size: 10px;
}

input[type=submit] {
  background-color: #0067a7;
  border: none;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}