/*
font-family: 'Kanit', sans-serif;
font-family: 'Roboto', sans-serif;

*/

/* Set background color */

body {
  background-color: #80A498
}


/* Set font color / details

h1 {
	color: #474554;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 50px;
	letter-spacing: 0px;
	word-spacing: 0px;
	font-weight: 700;
	text-decoration: none;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
}

h2 {
  color: #474554;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  text-align: center;
}


p {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #474554;
}

p2 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  text-align: center;
  color: white;
}

a { color: white; }  */

/* Set font color / details */

h1 {
	color: #474554;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 50px;
	letter-spacing: 0px;
	word-spacing: 0px;
	font-weight: 550;
	text-decoration: none;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
}

h2 {
  color: #474554;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  text-align: center;
  font-weight: 550;
}


p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  /*font-weight: bold;*/
  text-align: center;
  color: #474554;
  font-weight: 550;
}

p2 {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  text-align: center;
  color: white;
}

a { color: white; }




/* ------------------------ */

/* --- NAV BAR STYLING --- */

/* ------------------------ */

/* Add a green background color to the top navigation 

.homenav {
  background-color: #474554;
  overflow: hidden;
  padding: 20;
   width: 100vw;
  margin: 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}*/

.homenav {
  background-color: #474554;
  overflow: hidden;
  padding: 12px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .homenav {
    padding: 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .homenav {
    padding: 10px;
    font-size: 14px;
  }
}


/* Style the links inside the navigation bar */
.homenav a {

  color: #B6DBCE;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 20px;
}

/* Change the color of links on hover */
.homenav a:hover {
  background-color: #B6DBCE;
  color: black;
}

/* Add a color to the active/current link */
.homenav a.active {
  background-color: #B6DBCE;
  color: white;
}



/* ---------------------------------------- */

/* --- Player Stats Search Box Styling --- */

/* ---------------------------------------- */

#SearchPlayerInput {
  background-image: url('Images/searchicon.png');
  background-position: 5px center;
  outline:0;
  background-repeat: no-repeat;
  background-size: 5%;
  width: 60%;
  font-size: 20px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  display: block;
  margin: auto;
  text-indent: 30px;
  font-family: 'Roboto', sans-serif;
  background-color: white;
  color: black;
   
}

/* ---------------------------------- */

/* --- Player Stats Table Styling --- */

/* ---------------------------------- */


/* Set width of the table 
table.player_stats {
	border:1px solid #000000;
	border-collapse:collapse;
	text-align:center;
	padding:5px;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px
    font-family: 'Roboto', sans-serif;
	}
*/

/* ----------------------------
table.player_stats th {
	border:1px solid #000000;
	padding:5px;
	background:#16d94a;
	}

	table.player_stats td {
	border:1px solid #000000;
	padding:5px;
	
	}
	
	table.player_stats tr:nth-child(even) {
		background-color: white;
}

	table.player_stats tr:nth-child(odd) {
		background-color: #e9ecf2;
}
------ */



/* ---------------------- */
/* -- all_player_stats -- */
/* ---------------------- */

/* Set width of the table */
#all_player_stats {
  width: 100%;
  table-layout: fixed;
}

/* ---------------------- */
/* -- all_player_stats -- */
/* ---------------------- */

/* Set width of the table */
#all_player_stats {
  width: 100%;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}

/* Set table text alignment */
#all_player_stats {
  text-align: center;
}

/* Set general table styling */
#all_player_stats {
  border: 1px solid #000000;
  border-collapse: collapse;
  padding: 2px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

/* Table header styling */
#all_player_stats th {
  border: 1px solid #000000;
  padding: 5px;
  background: #474554;
  color: white;
  font-size: 15px; /* Adjusted the font-size to a more appropriate size */
  font-family: 'Roboto', sans-serif;
}

/* Table data cell styling */
#all_player_stats td {
  border: 1px solid #000000;
  padding: 5px;
}

/* Alternate row colors */
#all_player_stats tr:nth-child(even) {
  background-color: white;
}

#all_player_stats tr:nth-child(odd) {
  background-color: #D3D3D3;
}

/* Specific styling for the first column (Player) */
#all_player_stats th:nth-child(1),
#all_player_stats td:nth-child(1) {
  width: 200px; /* Adjust this value as needed */
}


/* --------------------- */
/* ---	match_result --- */
/* --------------------- */

table.match_result {
	border:1px solid #000000;
	border-collapse:collapse;
	padding:5px;
	width: 65%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	font-family: 'Kanit', sans-serif;
	text-align: center;
	table-layout: fixed
	}

table.match_result th {
	border:1px solid #000000;
	padding:5px;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	}

	table.match_result td {
	border:1px solid #000000;
	padding:5px;	
	}
	
	table.match_result tr:nth-child(even) {
		background-color: white;
}

	table.match_result tr:nth-child(odd) {
		background-color: #D3D3D3;
}
	



/* -------------------- */
/* ---- team_sheet ---- */
/* -------------------- */

table.team_sheet {
    border: 1px solid #000000;
    border-collapse: collapse;
    padding: 5px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 20px; 
    font-family: 'Kanit', sans-serif;
    table-layout: fixed;
}

table.team_sheet th {
    border: 1px solid #000000;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
}

table.team_sheet td {
    border: 1px solid #000000;
    padding: 5px;
    background: #FFFFFF;
    }




/* ---------------------- */
/* -- indiv_player_stats -- */
/* ---------------------- */

/* Set width of the table */
#indiv_player_stats {
  width: 75%;
  table-layout: fixed;
}

/* Set table text alignment */
#indiv_player_stats {
  text-align: center;
}


	#indiv_player_stats {
		border:1px solid #000000;
		border-collapse:collapse;
		padding:5px;
		font-family: Verdana, Geneva, sans-serif;
	}
	#indiv_player_stats th {
		border:1px solid #000000;
		padding:5px;
		background:#16d94a;
		
	}
	#indiv_player_stats td {
		border:1px solid #000000;
		padding:5px;
	}	
	
	#indiv_player_stats tr:nth-child(even) {
		background-color: white;
}

	#indiv_player_stats tr:nth-child(odd) {
		background-color: #e9ecf2;
}

	#indiv_player_stats {
	margin-left: auto;
	margin-right: auto;
	}




/* ---------------------- */

/* --- FOOTER STYLING --- */

/* ---------------------- */

.footer_section {
  margin: 0 auto;
  text-align: center;
  width: 100%;

} 




/* --------------------- */
/* ---	TESTING match_result --- */
/* --------------------- */

/*table.match_result {
	/*border-color:white;
	border-style:none;
	border-collapse:collapse;
	padding:5px;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	color: white;
	}

table.match_result th {
	border:1px ;
	padding:5px;
	}
	
	table.match_result th:nth-child(2) {
  border-right: solid 2px white;
}
	


	table.match_result td {
	border:1px;
	padding:5px;	
	}
	
	
	table.match_result tr:nth-child(even) {
		background-color: #606060;
}

	table.match_result tr:nth-child(odd) {
		background-color: #A0A0A0;
}

table.match_result td:nth-child(2) {
  border-right: solid 2px white;
}*/

