body {
  font-family: Arial, sans-serif;
  padding: 5px;
  background-color: #f9f9f9;
}
.header {
  display: flex;
  padding: 0px;
  height: 200px;
  justify-content: space-between;
  align-items: center;
  background-color: #d0f8e4; 
  
}

.logo {
  width: 600px; 
}

.webtext {
  width: 600px; 
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 0px;
  padding-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}



h1 {
  margin: 0;
  padding: 2px;
  text-align: left;
  color: #0a0101;
  text-shadow: -1px -1px 0 #685f5f, 1px -1px 0 #685f5f, -1px 1px 0 #685f5f, 1px 1px 0 #685f5f;
}

#logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo {
  display: block;
  max-width: 50%;
  height: auto;
  border-radius: 30%;
  background-color: #d0f8e4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  float: left;
}

.logo:hover {
  transform: scale(1.1);
}

.dropdowns {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  gap: 40px;
}

  
#category-select {
  width: 200px;
}

#club-select {
  width: 400px; 
 }

label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size:20px;
}

select {
  margin-bottom: 10px;
  padding: 10px;
  width: 400px;
  border-radius: 20px;
  border: 5px solid #066d31;
  background-color: #ffffff;
  color: #333333;
  font-size: 25px;
  font-weight: bold; 
}

#loadingContainer {
  position: relative;

}

#stats-display {
  text-align: justify;
  background-color: #ffffff;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
  font-size: 20px;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  line-height: 1.8; 
}


.loading-animation {
width: 100px;
height: 100px;
background-color: #f0f0f0;
border-radius: 50%;
position: absolute;
top: 50%;
left: 45%;
transform: translate(-50%, -50%);
border: 5px solid #ccc;
border-top: 5px solid #03321a; 
animation: spin 2s linear infinite;
display:none;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}


#loading {
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  font-size: 20px;
  width: 80%;
  max-width: 800px;
  line-height: 1.2; 
  font-family: 'Roboto', sans-serif;
  color: rgb(17, 55, 2);
} 

#others {
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  font-size: 25px;
  width: 80%;
  max-width: 800px;
  line-height: 1.2; 
  font-family: 'Roboto', sans-serif;
  color: rgb(6, 6, 79);
}  

@media (max-width: 600px) {
  select {
    width: 100%;
  }
  
  body {
    background-size: auto;
  }

  .container,
  #stats-display {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  body {
    background-position: top;
  }
}



body {
  
  background-color: #d0f8e4;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.wave {
  fill: #d0f8e4;
}

#stats-display {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li:before {
  content: "\2022";
  color: white;
  font-size: 18px;
  margin-right: 5px;
}

