body {
  margin: 0px;
  padding: 0px;
  /* background-color: #d5ffedf8; */
  background-color: #e6510000;
}

nav {
  position: sticky;
  top: 0em;
  z-index: 10;
  display: flex;
  margin: em 0em;
  background-color: rgb(0, 47, 0);
  background-image: linear-gradient(to bottom, rgb(0, 40, 0), rgb(0, 47, 0));
  color: white;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  min-width: 1000px;
  height: 75px;
  justify-content: space-between;
  box-sizing: border-box;
}

nav h3 {
  margin: 0px;
  height: 100%;
  transition: 0.1s;
}

nav h3:hover {
  color: #e65100;
  transform: translateY(-2px);
}

nav div img:hover {
  transition: 0.1s;
  transform: translateY(-2px);
}

.navbar_icon {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  margin: 0.5em;
}

.navbar_icon img {
  width: 100%;
}

.navbar_links {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.navbar_links div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.playerList_container {
  width:100%;
  background-color: #e37e4800;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#player_table {
  margin: 1em;
  padding: 1em;
  background-color: white;
  min-width: 1100px;
  max-width: 1100px;
  font-family: "Urbanist", sans-serif;
}



/* score chart */
.scoreChart_section {
  width: 100%;
  padding: 20px;
  background-color: #f8f9fa;
  font-family: "Urbanist", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #002900; /* drawing a line to separate */
}

#chart-container {
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/*  end of score chart */

/* for 2nd chart */
.chart-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.viz-box {
  flex: 1 1 450px;
  background: #fff8db;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 4px solid #002900;
  
}

.viz-box canvas {
  width: 100% !important;
  height: 300px !important;
}

.longest-throw-box {
  background: #fff8db;
  border: 4px solid #002900;
} 
/* end of 2nd chart */

.top-earner-box {
  background: #fff8db;
  border: 4px solid #002900;
}