* {
  outline: none;
}

* {
  user-select: none;
}

/* Zorg ervoor dat de container van de label en selectboxen flex gebruikt */
.rm_athlete-selection,
.rw_athlete-selection,
.cm_athlete-selection,
.cw_athlete-selection {
    	display: flex;
    	align-items: center;
    	vertical-align: center;
}

.select2-selection {
    	width: 225px !important;
    	height: 30px !important;
    	align-items: center;
}

.select2-container { 
	width: 225px !important;
	height: 30px !important;
	padding: 0px 4px 0px 4px;
}

.athlete-dropdown option {
    	font-family: 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.athlete_selection {
	margin-bottom: 35px;
}

/* BUTTONS */

#save-team-btn:disabled {
    	opacity: 0.5; /* Maak de knop iets doorzichtiger, zodat het duidelijk is dat hij niet actief is */
    	cursor: not-allowed; /* Toon een "verboden" cursor in plaats van niets */
    	pointer-events: auto; /* Zorg ervoor dat de cursor niet verdwijnt */
}

#save-team-btn {
    	background-color: #000666;
    	color: white;
    	border: 3px solid;
    	border-color: #000666;
    	height: 50px;
    	width: 220px;
    	padding: 4px 5px; 
    	cursor: pointer; 
    	border-radius: 20px; 
    	margin: 15px 10px 0px 0px;
    	font-size: 18px;
    	font-weight: bold;
}

#save-team-btn:hover {
    	background-color: white;
    	color: #000666;
}

#save-team-btn:active {
    	opacity: 0.5;
    	cursor: not-allowed;
    	pointer-events: auto;
}


#error-message {
	color: red; 
	font-weight: bold; 
	margin-top: 10px;
}

#saving-message {
	display: none;
	font-weight: bold; 
	margin-top: 10px;
	color: #000666;
}

#sorry-message {
	display: none;
	font-weight: bold; 
	margin-top: 10px;
	color: #FF0000;
}


#reset-team-btn,
#reset-team-btn-not-participating {
    	background-color: white; 
    	color: #000666;
    	border: 3px solid;
    	border-color: #000666;
    	height: 50px;
    	width: 220px; 
    	cursor: pointer; 
    	border-radius: 20px; 
    	margin-left: 10px;
    	font-size: 15px;
    	padding: 1px 1px;
    	font-weight: bold;
}

#reset-team-btn {
	margin-right: 10px;
}

#reset-team-btn:hover,
#reset-team-btn-not-participating:hover {
    	background-color: #000666;
    	border-color: white;
    	color: white;
}

#fetch-athletes-btn,
#fetch-competitions-btn,
#fetch-results-btn {
    	background: none;
    	background-color: #199cd8;
    	background-clip: border-box;
    	border: 1px solid transparent;
    	border-radius: 4px;
    	color: #fff;
    	outline: none;
    	font-size: 12px;
    	font-weight: 400;
    	letter-spacing: 1px;
   	padding: 0px 20px;
    	text-transform: uppercase;
    	line-height: 40px;
    	display: inline-block;
    	zoom: 1;
    	box-shadow: none;
    	text-shadow: none;
} 

#fetch-athletes-btn:hover,
#fetch-competitions-btn:hover,
#fetch-results-btn:hover {
    background: none;
    background-color: #1581b2;
    color: #fff;
}

#fetch-athletes-btn:active,
#fetch-competitions-btn:active,
#fetch-results-btn:active {
    background: none;
    background-color: #199cd8;
    box-shadow: none;
    text-shadow: none;
}

.close-button {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.info-button {
	background-color: #ccc; 
        border-color: #000;
	color: #000; 
        border: 2px solid; 
        font-weight: bold;
        text-align: center;
        font-size: 14px;
        min-width: 50px;
        padding: 2px 2px;
	max-height: 35px;
        border-radius: 10px; 
        cursor: pointer;
}

.is_participating {
	display: inline-block;
	padding: 3px 3px;
	font-weight: bold;
	border-radius: 10px;
	font-size: 12px;
	min-width: 45px;
	text-align: center;
}


/* DIVISIONS */

/* Main Div */
.div-main {
	background: white; 
	border-radius: 10px; 
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
	padding: 15px; 
	width: 100%;
	font-family: Rajdhani, sans-serif;
	margin-bottom: 20px;
}

/* Last and Next Event */
.div-main-events {
	display: flex; 
	justify-content: space-between; 
	align-items: flex-start;
	flex-direction: row;
	width: 100%;
}

.comp-wrapper {
	display: flex; 
	flex-wrap: wrap; 
	align-items: center; 
	gap: 15px;
}

.comp-name,
.comp-details {
	text-align: left; 
	font-size: 18px; 
	color: #000;
}

.comp-name {
	font-weight: bold; 
}

.in-progress {
	color: darkgreen; 
	font-weight: bold; 
	margin-left: 10px;
}

#countdown {
	font-size: 18px; 
	color: red; 
	font-weight: bold;
    	background-color: #e9e9e9;
    	margin: -35px 0px 0px 0px;
    	border-radius: 1rem;
    	padding: 5px 10px;
    	display: flex;
    	justify-content: center;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Headers text */
.div-header {
	display: flex; 
	flex-wrap: wrap;
	align-items: center; 
	font-weight: bold; 	
	font-size: 36px; 
	color: #000666;
	margin-bottom: 10px;
}

/* Header line */
.div-header-line {
	width: 10px; 
	height: 36px; 
	background-color: #000666;
	margin-right: 10px; 
	margin-left: -5px; 
	border-radius: 5px;
}

.div-team-category {
	display: flex;
	flex-direction: row;
}

.div-team-category-lhs {
	width: 60%;
}

.div-team-category-rhs {
	width: 40%;
}

/* Category Header */
.div-team-category-header {
	font-weight: bold; 
	font-size: 24px; 
	color: #000666;
	font-family: Rajdhani, sans-serif;
}

/* Team Values */
.div-value {
	display: flex; 
	/* flex-wrap: wrap; */
	justify-content: space-between; 
	align-items: center; 
	gap: 10px;
}

.starting-value {
	text-align: left; 
	font-weight: bold; 
	font-size: 26px; 
	color: #000666; 
	min-width: 20%;
}

.value-param {
	text-align: center; 
	font-weight: normal; 
	font-size: 20px; 
	color: #000; 
	min-width: 30%;
}

#team_value,
#budget_left {
	font-weight: bold;
}

.negative {
    	color: red !important;
    	/* font-weight: bold; */
}

.value-change-green,
.value-change-red,
.value-change-black {
	text-align: left; 
	font-size: 20px; 
	min-width: 10%; 
	font-weight: bold;
}

.value-change-green {
	color: #008000; 
}

.value-change-red {
	color: #FF0000; 
}

.value-change-black {
	color: #000000; 
}

/* Your Team */
.div-yourteam-wrapper {
	display: flex; 
	justify-content: space-between;
	flex-direction: row;
}

.div-yourteam-header {
	display: flex; 
	align-items: center; 
	font-weight: bold; 
	font-size: 36px; 
	color: #000666; 
	line-height: 1;
}

.div-yourteam-buttons {
	margin-left: auto;
}

.div-yourteam-star-athlete {
    display: flex;
    justify-content: right;
    margin: 0px 20px 20px 0px;
}

/* Athlete Rankings */

.div-filters-wrapper {
	display: flex; 
	gap: 50px; 
	align-items: flex-start; 
	margin-top: 10px;
}

.div-filters {
	display: flex; 
	flex-direction: column; 
	align-items: flex-start;
}

.div-athlete-value-slider {
	display: flex; 
	align-items: center; 
	gap: 10px;
}

.athlete-value-label {
	font-size: 16px; 
	font-weight: bold;
}

#athlete-value-slider {
	width: 300px;
}

.filter-by {
	font-size: 22px !important;
}

.cat-checkbox-label-header,
.cat-checkbox-label {
	color: #000000;
}

.cat-checkbox-label-header {
	font-size: 16px;
	font-weight: bold;
}

#category-filters {
	display: flex; 
	gap: 20px;
}

#athlete-name-filter {
	margin-bottom: 20px; 
	padding: 5px; 
	width: 250px;
}

/* MODAL */

.modal {
  	display: none; 
  	position: fixed; 
  	z-index: 1000; 
  	left: 0;
  	top: 0;
  	width: 100%; 
  	height: 100%; 
  	overflow: auto;
 	background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  	background-color: #fff;
  	margin: 10% auto;
  	padding: 20px;
  	border-radius: 12px;
  	width: 90%;
  	max-width: 1200px;
  	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.charts-container {
	display: flex; 
	flex-direction: row;
	justify-content: 
	space-between; 
	margin-bottom: 20px; 
	margin-left: 60px; 
	margin-right: 60px;
}

.chart-widget {
	width: 20%; 
	text-align: center;
}

/* CANVAS */

.comp_points_chart {
	min-height: 300px; 
	height: 100%; 
	width: 100%;
}

/* PROFILE PICTURE */

.athlete-avatar {
    	width: 250px;
    	height: 250px;
    	border-radius: 50% !important;
    	object-fit: cover;
    	display: block;
    	margin-left: 50px;
    	margin-bottom: 15px;
	transition: width 0.3s ease, height 0.3s ease;
}

.athlete-avatar-small {
  	width: 40px;
  	height: 40px;
  	border-radius: 50% !important;
  	display: block;
  	object-fit: cover;
}


.athlete-photo img {
  max-height: 40px;
  width: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.flag-icon {
	width: 24px;
	height: 18px;
}

.athlete-option:disabled { 
	background-color: #ccc; 
	cursor: not-allowed; 
}

th.sorted-asc::after {
    content: " ▲";
    font-size: 12px;
}

th.sorted-desc::after {
    content: " ▼";
    font-size: 12px;
}

/* ATHLETE WRAPPERS */

.athlete-wrapper { 
	flex: 1; 
	min-width: 200px;
	display: flex; 
	flex-direction: column;
}

.best-athletes-wrapper {
	margin-bottom: 30px;
}

.best-athletes-header {
	font-family: Rajdhani, sans-serif; 
	color: #000000; 
	font-size: 24px; 
	margin-bottom: 10px;
}

.top-athletes-grid {
	display: flex; 
	flex-wrap: wrap; 
	gap: 25px;
}

/* ATHLETE TILE */

.athlete-tile { 
	background: linear-gradient(145deg, #e0e0e0, #ffffff); 
        border-radius: 12px; 
	padding: 5%; 
	text-align: center; 
	box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}

.athlete-tile-category-label {
	margin: 0; 
	font-weight: bold; 
	font-size: 20px; 
	color: #333;
}

.athlete-tile-profile-picture {
	width: 150px; 
	border-radius: 50% !important; 
	object-fit: cover; 
	margin-bottom: 12px;
}

.athlete-tile-full-name {
	margin: 5px 0 2px 0; 
	color: #000666; 
	font-size: 22px; 
	margin-top: 20px; 
	margin-bottom: 20px;
}

.athlete-tile-points {
	margin: 4px 0 0 0; 
	font-size: 18px; 
	color: #000; 
	font-family: Rajdhani, sans-serif;
}

.athlete-runners-up {
	margin-top: 10px; 
	display: flex; 
	flex-direction: column;
	gap: 6px;
}

.athlete-runners-up-name {
	display: flex; 
	justify-content: space-between; 
	background: #f1f1f1; 
	padding: 6px 10px; 
	border-radius: 8px; 
	font-size: 15px;
	color: #424242; 
	box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}

.athlete-runners-up-points {
	margin-left: auto;
}

/* SELECTION TILE */

.selection-tiles {
  	background-color: #ffffff;
  	padding-bottom: 50px;
  	width: 100%;
  	flex-shrink: 0;
  	object-fit: cover;
}

.athlete-selection-grid {
	display: flex; 
	flex-wrap: wrap; 
	gap: 15px;
	flex-direction: row;
}


.athlete-selection-grid::before,
.athlete-selection-grid::after {
	content: none !important;
}

.selection-tile { 
	background: linear-gradient(145deg, #e0e0e0, #ffffff); 
        border-radius: 12px; 
	padding: 15px; 
	box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    	display: flex;
    	flex-direction: column;
	align-items: center;
	min-width: 255px;
}

.selection-tile-header {	
    	display: flex;
	flex-direction: column;
	align-items: center;
}

.selection-tile-body {	
    	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
}

.selection-tile-flag {
    	width: 36px;
    	height: 27px;
    	position: relative;
    	top: -144px;
    	right: 70px;
}

.selection-tile-profile-flag {
    	border-radius: 6px !important;
    	object-fit: cover;
	display: block;
    	position: relative;
}

.selection-tile-bonus {
    	position: relative;
    	top: -174px;
    	right: -63px;
}

.selection-tile-profilepic {
	width: 150px;
    	height: 150px;
    	border: 6px solid darkgrey;
    	border-radius: 50% !important;
    	object-fit: cover;
	display: block;
    	position: relative;
}

.selection-tile-profilepic.has-bonus {
  	border: 6px solid gold;
  	border-radius: 50%;
}


.selection-tile-profile-picture {
	width: 150px; 
	border-radius: 50% !important; 
	object-fit: cover; 
}

/* BONUS STAR */

.golden-star {
      	font-size: 40px;
      	color: gold;
	line-height: 1rem;
}

.golden-star-text {
	font-weight: bold;
	color: #000666;
	font-size: 16px;
}

.star-checkbox {
	display: none;
}

.star-label {
      	font-size: 50px;
      	color: darkgray;
      	cursor: pointer;
      	transition: color 0.2s;
	vertical-align: middle;
	line-height: 1;
	display: inline-block;
	padding: 0;
}

.star-checkbox:checked + .star-label {
      	color: gold;
}

.selection-tile-selector {
	text-align: center;
	margin-top: -88px;
	padding-bottom: 10px;
}

.selection-tile-bottom-labels {
	display: grid;
    	grid-template-columns: 33% 34% 33%;
    	width: 100%;
	font-size: 0.9rem;
	color: #000666;
	font-weight: bold;
}

.selection-tile-body-rating,
.selection-tile-body-current_value,
.selection-tile-body-next_event {
	display: flex;
    	flex-direction: column;
    	width: 100%;
	font-size: 0.9rem;
	color: #000666;
	font-weight: bold;
}

.selection-tile-bottom-label,
.selection-tile-rating-label,
.selection-tile-current_value-label,
.selection-tile-next_event-label {
	display: flex;
    	align-items: center;
    	justify-content: center;
}


.selection-tile-bottom {
  	display: grid;
    	grid-template-columns: 33% 34% 33%;
    	width: 100%;
  	color: #000000;
  	font-family: Rajdhani;
}

.selection-tile-bottom-performance,
.selection-tile-bottom-current_value,
.selection-tile-rating,
.selection-tile-current_value,
.selection-tile-next_event {
	display: flex;
  	font-size: 1rem;
	font-weight: bold;
    	align-items: center;
    	justify-content: center;
	color: #000000;
}

.selection-tile-bottom-is_participating {
  	color: #000000;
  	font-family: Rajdhani;
  	font-size: 1rem;
	align-items: center;
    	justify-content: center;
}

/* ATHLETE DETAILS */

.athlete-details {
	display: flex; 
	flex-direction: row; 
	gap: 16px; 
	align-items: center;
}

.athlete-details-lhs {
	flex: 0 0 auto;
}

.athlete-details-rhs {
	flex: 1;
	margin-bottom: 20px;
}

.athlete-details-h1 {
	font-size: 48px; 
	font-weight: bold;
	line-height: 1em !important;
	margin: 0;
}

.athlete-details-h2 {
	font-size: 28px !important; 
	margin-top: 0;
	margin-bottom: 15px;
	line-height: 1em !important;
}

.athlete-details-p {
	font-size: 20px; 
	font-family: Rajdhani, sans-serif; 
	color: black;
}

/* ATHLETE STATS */

.athlete-stats-wrapper { 
	overflow-x: auto; 
	overflow-y: visible; 
	padding-bottom: 10px;
}

.athlete-stats { 
	display: flex; 
	flex-wrap: nowrap; 
	gap: 25px; 
	min-width: max-content;
}

/* ATHLETE RANKINGS LIST */

.athlete_rankings {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.athlete_rankings_list {
  	background-color: #ffffff;
  	padding-bottom: 25px;
  	width: 100%;
  	flex-shrink: 0;
  	object-fit: cover;
}

.athlete_rankings_list-top {
	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
	border-bottom: 2px solid #000666;
    	position: sticky;
    	top: 0;
    	z-index: 10;
}

.athlete_rankings_list-body {
  	background-color: #ffffff;
  	list-style: none;
  	margin: 0;
  	padding: 0rem;
  	display: flex;
  	flex-direction: column;
}

.athlete_rankings_list-row {
	background-color: #ffffff;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	padding: 5px 0px 5px 0px;
	display: flex;
	align-items: center;
}

.athlete_rankings_list-top-item.rank,
.athlete_rankings_list-row-item.rank {
    	width: 8%;
	padding-left: 5px;
}

.athlete_rankings_list-top-item.category,
.athlete_rankings_list-row-item.category {
    	width: 9%;
}

.athlete_rankings_list-top-item.athlete,
.athlete_rankings_list-row-item.athlete {
    	width: 27%;
	padding-right: 5px;
}

.athlete_rankings_list-top-item.flag {
    	display: none;
}

.athlete_rankings_list-row-item.flag {
    	width: 3%;
}

.athlete_rankings_list-top-item.country {
    	width: 11%;
}

.athlete_rankings_list-row-item.country {
    	width: 8%;
}

.athlete_rankings_list-top-item.value,
.athlete_rankings_list-row-item.value {
    	width: 12%;
}

.athlete_rankings_list-top-item.avg_pts,
.athlete_rankings_list-row-item.avg_pts {
    	width: 12%;
}

.athlete_rankings_list-top-item.rating,
.athlete_rankings_list-row-item.rating {
    	width: 11%;
	font-weight: bold;
}

.athlete_rankings_list-top-item.next,
.athlete_rankings_list-row-item.next {
    	width: 10%;
}

.athlete_rankings_list-top-item {
    position: relative;
}

.sort-icon {
    font-size: 10px;
    vertical-align: middle;
}

.athlete_rankings_list-row:hover,
.stats_list-row:hover {
	background-color: #e9e9e9;
	cursor: pointer;
}

/* ATHLETE RESULTS LIST */

.athlete_results {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.athlete_results_list {
  	background-color: #ffffff;
  	padding-bottom: 25px;
  	width: 100%;
  	flex-shrink: 0;
  	object-fit: cover;
}

.athlete_results_list-top {
	background-color: #000666;
	color: #ffffff;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
	border-bottom: 1px solid #000666;
}

.athlete_results_list-body {
  	background-color: #ffffff;
  	list-style: none;
  	margin: 0;
  	padding: 0rem;
  	display: flex;
  	flex-direction: column;
}

.athlete_results_list-row {
	background-color: #ffffff;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	padding: 5px 0px 5px 0px;
	display: flex;
	align-items: center;
}

.athlete_results_list-top-item.date,
.athlete_results_list-row-item.date {
    	width: 17%;
	padding-left: 5px;
}

.athlete_results_list-top-item.competition,
.athlete_results_list-row-item.competition {
    	width: 30%;
}

.athlete_results_list-top-item.place,
.athlete_results_list-row-item.place {
    	width: 18%;
}

.athlete_results_list-top-item.qs,
.athlete_results_list-row-item.qs {
    	width: 5%;
}

.athlete_results_list-top-item.qr,
.athlete_results_list-row-item.qr {
    	width: 5%;
}

.athlete_results_list-top-item.ir,
.athlete_results_list-row-item.ir {
    	width: 5%;
}

.athlete_results_list-top-item.tr,
.athlete_results_list-row-item.tr {
    	width: 5%;
}

.athlete_results_list-top-item.mr,
.athlete_results_list-row-item.mr {
    	width: 5%;
}

.athlete_results_list-top-item.total_pts,
.athlete_results_list-row-item.total_pts {
    	width: 10%;
	gap: 5px;
}

/* DETAILS LIST */

.details {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.details_list {
	display: none;
    	width: 40%;
    	max-width: 400px;
    	flex-direction: column;
    	padding: 10px 0px 20px 50px;
}


.details_list-top {
    	color: #ffffff;
	background-color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	border-bottom: 2px solid #000666;
	padding-left: 5px;
	text-align: left;
}

.details_list-row {
    	background-color: #e9e9e9;
    	border-bottom: 1px solid #aaaaaa;
	padding: 2px 0px 2px 0px;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	cursor: pointer;
	padding-left: 5px;
	text-align: left;
}

.details_list-top-item.athletes,
.details_list-row-item.athletes {
    	width: 80%;
}

.details_list-top-item.points,
.details_list-row-item.points {
    	width: 20%;
}

/* USER RANKINGS LIST */

.user_rankings {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.user_rankings_list {
	width: 100%;
}

.user_rankings_list-top {
    	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	border-bottom: 2px solid #000666;
}

.user_rankings_list-row {
    	background-color: #ffffff;
    	border-bottom: 1px solid #aaaaaa;
    	padding: 5px 0px 5px 0px;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
}

.user_rankings_list-top-item.rank,
.user_rankings_list-row-item.rank {
    	width: 5%;
	padding-left: 5px;
}

.user_rankings_list-top-item.delta,
.user_rankings_list-row-item.delta {
    	width: 5%;
	padding-left: 5px;
}

.user_rankings_list-top-item.player,
.user_rankings_list-row-item.player {
    	width: 25%;
}

.user_rankings_list-top-item.country,
.user_rankings_list-row-item.country {
	width: 20%;
}

.user_rankings_list-top-item.last_event,
.user_rankings_list-row-item.last_event,
.user_rankings_list-top-item.total_points,
.user_rankings_list-row-item.total_points,
.user_rankings_list-top-item.avg_points,
.user_rankings_list-row-item.avg_points {
    	width: 15%;
}

/* RESULTS LIST */

.results {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.results li:hover {
	background-color: #e9e9e9;
}

.results_list-top {
    	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	border-bottom: 2px solid #000666;
}

.results_list-row {
    	background-color: #ffffff;
    	border-bottom: 1px solid #aaaaaa;
    	padding: 5px 0px 5px 0px;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	cursor: pointer;
}

.results_list-bottom {
    	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
    	border-top: 2px solid #000666;
}

.results_list-top-item.event,
.results_list-row-item.event {
    	width: 5%;
}

.results_list-row-item.event {
    	padding-left: 5px;
}

.results_list-top-item.date,
.results_list-row-item.date {
    	width: 20%;
	padding-right: 15px;
}

.results_list-top-item.tournament,
.results_list-row-item.tournament {
    	width: 40%;
	padding-right: 15px;
}

.results_list-top-item.place,
.results_list-row-item.place {
    	width: 13%;
	padding-right: 15px;
}

.results_list-top-item.comp_lvl,
.results_list-row-item.comp_lvl {
    	width: 10%;
}

.results_list-row-item.comp_lvl {
    	padding-left: 15px;
}

.results_list-top-item.points,
.results_list-row-item.points {
    	width: 10%;
}


.results_list-top-item.arrow,
.results_list-row-item.arrow {
    	width: 2%;
}

.results_list-bottom-item.filler {
    	width: 78%;
}

.results_list-bottom-item.total {
    	width: 10%;
}

.results_list-bottom-item.total_score {
    	width: 12%;
}



/* SELECTOR LIST */

.selector_list {
  	background-color: #ffffff;
  	padding-bottom: 25px;
  	width: 100%;
  	flex-shrink: 0;
  	object-fit: cover;
}

.selector_list-top {
	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
	border-bottom: 2px solid #000666;
}

.selector_list-top-lhs {
	margin-left: 4px;
	width: 50%;
}

.selector_list-top-rhs {
	margin-right:4px;
	width: 50%;
    	display: flex;
    	flex-direction: row;
}

.selector_list-top-rhs-item.average_points,
.selector_list-top-rhs-item.last_event,
.selector_list-top-rhs-item.current_value,
.selector_list-top-rhs-item.is_participating {
	width: 25%; 
}

.selector_list-top-rhs-item.is_participating {
    text-align: center;
}

.selector {
	display: flex;
	flex-direction: column;
	list-style-type: disc;
	width: 100%;
	margin-block-start: 0em;
	margin-block-end: 0em;
	padding-inline-start: 0px;
	unicode-bidi: isolate;
}

.selector_list-body {
  	background-color: #ffffff;
  	list-style: none;
  	margin: 0;
  	padding: 0rem;
  	display: flex;
  	flex-direction: row;
}

.selector_list-row {
	background-color: #ffffff;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	height: 50px;
	padding: 0rem;
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.selector_list-lhs {
  	/* margin-left: 4px; */
  	width: 50%;
  	display: flex;
 	flex-direction: row;
	align-items: center;
}

.selector_list-rhs {
  	/* margin-right: 4px; */
  	width: 50%;
	display: flex;
 	flex-direction: row;
	align-items: center;
}

.selector_list-lhs-item.profilepic {
  	/* margin-left: 4px; */
  	width: 15%;
}

.selector_list-top-lhs-item.athlete {
  	width: 80%;
}

.selector_list-top-lhs-item.bonus {
  	width: 20%;
}

.selector_list-lhs-item.selector {
  	width: 65%;
  	color: #000000;
  	font-weight: bold;
  	font-family: Rajdhani;
  	font-size: 1rem;
}

.selector_list-lhs-item.bonus {
  	width: 20%;
	padding-left: 10px;
}

.selector_list-rhs-item.average_points {
  	width: 25%;
  	color: #000000;
  	font-family: Rajdhani;
  	font-size: 1rem;
}

.selector_list-rhs-item.last_event {
  	width: 25%;
  	color: #000000;
  	font-family: Rajdhani;
  	font-size: 1rem;
}

.selector_list-rhs-item.current_value {
  	width: 25%;
  	color: #000000;
  	font-family: Rajdhani;
  	font-size: 1rem;
}

.selector_list-rhs-item.is_participating {
  	width: 25%;
  	color: #000000;
  	font-family: Rajdhani;
  	font-size: 1rem;
}

/* STATS LIST */

.stats {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
}

.stats_list {
  	background-color: #f5f5f5;
  	padding: 0rem; /* top, right, bottom, left */
  	min-width: 375px;
  	border-radius: 25px;
  	flex-shrink: 0;
  	object-fit: cover;
}

.stats_list-top {	
	background-color: #000666;
  	color: #ffffff;
  	display: flex;
  	align-items: center;   /* verticaal centreren */
  	justify-content: center; /* horizontaal centreren */
  	height: 3rem;	
	border-radius: 25px 25px 0 0;
  	position: relative;
  	cursor: pointer;
}

.stats_list-body {
  	list-style: none;
  	margin: 0;
  	padding: 1rem;
  	display: flex;
  	flex-direction: column;
}

.stats_list-row {
  	background-color: #ffffff; /* Witte container */
  	border-radius: 25px;
  	/* height: 50px; */
  	padding: 5px;
  	display: flex;
  	gap: 0.5rem;
  	align-items: center;
  	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  	flex-wrap: wrap;
  	margin-bottom: 5px;
}

.stats_list-item,
.stats_list-row-item {
  	position: relative; /* nodig voor absolute positioning van tooltip */
}

.stats_list-item.title,
.stats_list-row-item.title {
  	min-width: 60px;
  	color: #ffffff;
  	font-weight: bold;
  	font-family: Rajdhani;
  	font-size: 1.5rem;
}

.stats_list-item.profilepicture,
.stats_list-row-item.profilepicture  {
  	width: 45px;
}

.stats_list-item.athletename,
.stats_list-row-item.athletename  {
  	min-width: 175px;
  	font-weight: 500;
  	font-size: 1rem;
  	color: #333;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 3px;
}

.stats_list-item.athletestat,
.stats_list-row-item.athletestat {
  	flex: 40px;
  	text-align: right;
  	font-size: 1rem;
  	font-weight: bold;
  	color: #333;
  	padding-right: 15px;
}

.stats_list-item:hover .tooltiptext,
.stats_list-row-item:hover .tooltiptext {
  	visibility: visible;
  	opacity: 1;
}

/* WINNERS LIST */

.winners {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
}

.winners_list {
  	background-color: #ffffff;
  	padding: 0rem;
	width: 100%;
  	max-width: 1000px;
  	display: flex;
	flex-direction: column;
  	object-fit: cover;
}

.winners_list-body {
  	background-color: #ffffff;
  	list-style: none;
  	margin: 0;
  	padding: 0rem;
  	display: flex;
  	flex-direction: column;
  	gap: 1rem;
}

.winners_list-row {
  	background-color: #e9e9e9; /* grijze container */
  	border-radius: 1rem;
  	padding: 0.6rem;
  	display: flex;
  	gap: 1rem;
  	align-items: center;
  	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  	flex-direction: row;
	font-size: 1.0rem;
	margin-bottom: 15px;
}

.winners_list-item.comp_name {
  	min-width: 50%;
  	color: #000000;
  	font-family: Rajdhani;
  	padding-left: 20px;
}

.winners_list-item.user_name {
  	min-width: 25%;
  	color: #000000;
  	font-weight: bold;
  	font-family: Rajdhani;
}

.winners_list-item.points {
  	min-width: 12%;
  	color: #000000;
  	font-family: Rajdhani;
}

/* WORLD RANKINGS LIST */

.world_rankings {
    	display: block;
    	list-style-type: disc;
    	margin-block-start: 0em;
    	margin-block-end: 0em;
    	padding-inline-start: 0px;
    	unicode-bidi: isolate;
	color: #000000;
}

.world_rankings_list {
  	background-color: #ffffff;
  	padding-bottom: 25px;
  	width: 100%;
  	flex-shrink: 0;
  	object-fit: cover;
}

.world_rankings_list-top {
	color: #000666;
    	font-weight: bold;
    	font-size: 1rem;
    	align-items: center;
    	display: flex;
    	flex-direction: row;
	border-bottom: 2px solid #000666;
    	position: sticky;
    	top: 0;
    	z-index: 10;
}

.world_rankings_list-body {
  	background-color: #ffffff;
  	list-style: none;
  	margin: 0;
  	padding: 0rem;
  	display: flex;
  	flex-direction: column;
}

.world_rankings_list-row {
	background-color: #ffffff;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	padding: 5px 0px 5px 0px;
	display: flex;
	align-items: center;

}

.world_rankings_list-top-item.rank,
.world_rankings_list-row-item.rank {
    	width: 5%;
	padding-left: 5px;
}

.world_rankings_list-top-item.delta,
.world_rankings_list-row-item.delta {
    	width: 5%;
}

.world_rankings_list-top-item.athlete,
.world_rankings_list-row-item.athlete {
    	width: 38%;
}

.world_rankings_list-top-item.country,
.world_rankings_list-row-item.country {
    	width: 23%;
}

.world_rankings_list-top-item.value,
.world_rankings_list-row-item.value {
    	width: 23%;
}

/* NEXT EVENT INDICATOR */

.next-event-indicator.yes {
  	background: #ccffcc;
  	border: 2px solid #006400;
  	color: #006400;
  	font-weight: bold;
  	padding: 5px 10px;
  	border-radius: 8px;
  	display: inline-block;
 	text-align: center;
}

.next-event-indicator.no {
  	background: #ffcccc;
  	border: 2px solid #640000;
  	color: #640000;
  	font-weight: bold;
  	padding: 5px 10px;
  	border-radius: 8px;
  	display: inline-block;
  	text-align: center;
}

/* TOOLTIP */ 

.tooltip-wrapper {
  	position: relative;
}

.tooltiptext {
    	visibility: hidden;
   	min-width: 250px;
    	max-width: 300px;
    	text-align: center;
    	background-color: #e9e9e9;
    	color: black;
    	text-align: center;
    	padding: 5px;
    	border-radius: 15px;
    	border: 1px solid #000000;
    	font-size: 18px;
    	font-weight: 400;
    	position: absolute;
    	z-index: 1;
    	top: 125%;
    	left: 50%;
    	transform: translateX(-50%);
    	opacity: 0;
    	transition: opacity 0.3s;
}

/* Responsive styles for smaller screens */
@media (max-width: 1750px) {

.div-team-category {
	display: flex;
	flex-direction: column;
}

.div-team-category-lhs {
	width: 100%;
}

.div-team-category-rhs {
	width: 100%;
}

}

/* Responsive styles for smaller screens */
@media (max-width: 1000px) {

.athlete-wrapper {
	min-width: 300px;
}

.athlete_rankings_list-top {
    font-size: 0.8rem;
}

.charts-container {
	margin: 10px;
}

.chart-widget {
	width: 30%; 
}

.athlete_rankings_list-row-item.flag {
    	width: 4%;
}

.athlete_rankings_list-row-item.country {
    	width: 7%;
}


}

/* Responsive styles for smaller screens */
@media (max-width: 925px) {

.select2-selection {
    	width: 200px !important;
}

.select2-container { 
	width: 200px !important;
}

.selection-tile-profilepic {
	width: 125px;
    	height: 125px;
}

.selection-tile-profile-picture {
	width: 125px; 
}

.selection-tile-bottom-average_points, 
.selection-tile-bottom-last_event,
.selection-tile-bottom-current_value {
    	font-size: 0.9rem;

}

.div-filters-wrapper {
	flex-direction: column;
    	gap: 10px;
}

#countdown {
    font-size: 14px;
}

.selection-tile { 
	min-width: 235px;
}

.selection-tile-flag {
    position: relative;
    top: -120px;
    right: 62px;
}

.selection-tile-bonus {
    position: relative;
    top: -155px;
    right: -50px;
}

.star-label {
    font-size: 45px;
}

.selection-tile-selector {
    margin-top: -80px;
}

}

/* Responsive styles for smaller screens */
@media (max-width: 814px) {

/* SELECT BOXEN */

/* Zorg ervoor dat alle dropdowns dezelfde hoogte hebben */

.select2-selection,
.select2-container {
    	width: 225px !important;
}

.selection-tile {
	flex-direction: row;
}

.selection-tile-bottom-labels,
.selection-tile-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* DIVISIONS */

.div-main-events {
	display: flex; 
	gap: 5px; 
	justify-content: space-between; 
	align-items: flex-start;
	flex-direction: column;
}

.div-main {
	padding: 15px; 
}

.div-header {	
	font-size: 28px; 
}

.div-header-line {
	width: 8px; 
	height: 28px;
	margin-right: 8px; 
	margin-left: -4px; 
	border-radius: 4px;
}

.div-value {
	flex-direction: column;
}

.div-yourteam-wrapper {
	flex-direction: column;
	margin-bottom: 20px;
}

.div-yourteam-buttons {
	margin-left: 0;
  	display: flex;
  	justify-content: center;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
}

.div-yourteam-star-athlete {
    	justify-content: center;
}

/* ATHLETE STATS */

.athlete-stats { 
	gap: 5px; 
}

/* DETAILS LIST */

.details_list {
    	width: 100%;
    	max-width: 400px;
    	flex-direction: column;
    	padding: 10px;
}

/* RANKINGS LIST */

.user_rankings_list {
	width: 100%;
}

.user_rankings_list-top-item.rank,
.user_rankings_list-top-item.delta,
.user_rankings_list-top-item.total_points,
.user_rankings_list-row-item.total_points  {
    display: none;
}

.user_rankings_list-top-item.player {
    width: 45%;
}

.user_rankings_list-top-item.country,
.user_rankings_list-row-item.country {
    width: 25%;
}

.user_rankings_list-top-item.last_event,
.user_rankings_list-row-item.last_event,
.user_rankings_list-top-item.avg_points,
.user_rankings_list-row-item.avg_points {
    width: 20%;
}

.user_rankings_list-row-item.rank,
.user_rankings_list-row-item.delta {
    width: 8%;
}

.user_rankings_list-row-item.player {
    width: 29%;
}

/* RESULTS LIST */

.results_list-row {
    	padding: 10px;
	flex-direction: column;
}

.results_list-top-item.event,
.results_list-row-item.event,
.results_list-top-item.date,
.results_list-row-item.date,
.results_list-top-item.tournament,
.results_list-row-item.tournament,
.results_list-top-item.place,
.results_list-row-item.place,
.results_list-top-item.comp_lvl,
.results_list-row-item.comp_lvl,
.results_list-top-item.points,
.results_list-row-item.points,
.results_list-top-item.arrow,
.results_list-row-item.arrow {
    	width: 100%;
	padding: 0px;
}

.results_list-top-item.event,
.results_list-top-item.date,
.results_list-top-item.place,
.results_list-top-item.comp_lvl,
.results_list-top-item.points,
.results_list-top-item.arrow,
.results_list-row-item.event,
.results_list-row-item.comp_lvl,
.results_list-row-item.arrow {
	display: none;
}

.results_list-row-item.tournament,
.results_list-row-item.points {
	font-weight: bold;
}

/* SELECTOR LIST */

.selector_list-top {
	flex-direction: column;
}

.selector_list-top-lhs {
	display: none;
}

.selector_list-top-rhs {
	width: 100%;
	font-size: 0.75rem;
  	text-align: center;
}

.selector_list-row {
	flex-direction: column;
	height: 110px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.selector_list-lhs {
  	margin-left: 0px;
  	width: 100%;
	align-items: center;
}

.selector_list-rhs {
  	margin-right: 0px;
  	width: 100%;
	align-items: center;
}

.selector_list-rhs-item.average_points,
.selector_list-rhs-item.last_event,
.selector_list-rhs-item.current_value,
.selector_list-rhs-item.is_participating,
.selector_list-top-rhs-item.average_points,
.selector_list-top-rhs-item.last_event,
.selector_list-top-rhs-item.current_value,
.selector_list-top-rhs-item.is_participating {
  	display: inline-flex;
  	justify-content: center;  /* center horizontally */
  	align-items: center;      /* center vertically */
	margin-right: 0px;
}

/* STATS LIST */

.stats_list {
	min-width: 285px;
}

.stats_list-body {
  	padding: 0.5rem;
}

.stats_list-row {
  	gap: 0rem;
}

.athlete-avatar-small {
    width: 35px;
}

.stats_list-item.profilepicture {
    width: 35px;
}

.stats_list-item.athletename {
  	font-size: 0.8rem;
	min-width: 0px;
	padding-left: 10px;

}

.stats_list-item.athletestat {
  	font-size: 0.8rem;
	padding-right: 5px;
}


/* WINNERS LIST */

.winners_list-row {
  	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.9rem;

}

.winners_list-item {
	width: 100%;
  	padding: 0px;
	font-size: 1rem;
}

.winners_list-item.comp_name {
  	padding: 0px;
}

#reset-team-btn,
#reset-team-btn-not-participating {
	margin: 5px;
}

/* SELECTION TILES */

.athlete-selection-grid {
    gap: 20px;
    flex-direction: column;
}

#countdown {
    font-size: 18px;
}

.athlete-avatar {
    width: 150px;
    margin-left: 0px;
}

}

/* Responsive styles for smaller screens */
@media (max-width: 750px) {

.athlete_rankings_list-top {
    font-size: 0.7rem;
}

.athlete_rankings_list-row {
    font-size: 0.8rem;
}

.athlete_rankings_list-top-item.events,
.athlete_rankings_list-row-item.events,
.athlete_rankings_list-top-item.total_pts,
.athlete_rankings_list-row-item.total_pts {
	display: none;
}

.athlete_rankings_list-top-item.athlete, 
.athlete_rankings_list-row-item.athlete {
    width: 32%;
}

.athlete_rankings_list-row-item.flag {
    	width: 9%;
}

.athlete_rankings_list-row-item.country {
    	display: none;
}

.athlete_rankings_list-top-item.value, 
.athlete_rankings_list-row-item.value {
    	width: 15%;
}

.athlete_rankings_list-top-item.avg_pts, 
.athlete_rankings_list-row-item.avg_pts {
    	width: 13%;
}

.athlete_rankings_list-top-item.next, 
.athlete_rankings_list-row-item.next {
    	width: 12%;
}

.world_rankings_list-top-item.rank,
.world_rankings_list-top-item.delta {
	display: none;
}

.world_rankings_list-top-item.athlete {
    	width: 58%;
}

.world_rankings_list-top-item.country, 
.world_rankings_list-row-item.country,
.world_rankings_list-top-item.value, 
.world_rankings_list-row-item.value {
    	width: 21%;
}

.athlete_results_list-row {
	flex-direction: column;
}

.athlete_results_list-row-item.date,
.athlete_results_list-row-item.competition,
.athlete_results_list-row-item.place,
.athlete_results_list-row-item.total_pts {
	width: 100%;
	padding: 0px;
}

.athlete_results_list-top-item.total_pts {
	width: 30%;
}

.athlete_results_list-row-item.competition,
.athlete_results_list-row-item.total_pts {
	font-weight: bold;
}

.athlete_results_list-top-item.qs,
.athlete_results_list-top-item.qr,
.athlete_results_list-top-item.ir,
.athlete_results_list-top-item.tr,
.athlete_results_list-top-item.mr,
.athlete_results_list-row-item.qs,
.athlete_results_list-row-item.qr,
.athlete_results_list-row-item.ir,
.athlete_results_list-row-item.tr,
.athlete_results_list-row-item.mr {
	display: none;
}

.results_list-bottom-item.filler {
    	display: none;
}

.results_list-bottom-item.total {
    	width: 30%;
}

.elementor-kit-6 h1 {
    	font-size: 32px !important;
}

.selection-tile-body {
    	flex-direction: column;
}

.selection-tile-rating, 
.selection-tile-current_value, 
.selection-tile-next_event {
   	font-size: 0.9rem;
}

.is_participating {
	font-size: 0.7rem !important;
}

}

/* Responsive styles for smaller screens */
@media (max-width: 500px) {

.flag-icon {
	width: 20px;
	height: 15px;
}

.athlete-details {
 	flex-direction: column;
}

.athlete_rankings_list-top-item.rank,
.athlete_rankings_list-top-item.category,
.athlete_rankings_list-top-item.country,
.athlete_rankings_list-top-item.next,
.user_rankings_list-top-item.country,
.user_rankings_list-row-item.country {
    	display: none;
}

.athlete_rankings_list-top-item.athlete {
	width: 53%;
}

.athlete_rankings_list-top-item.value {
	width: 13%;
}

.athlete_rankings_list-top-item.avg_pts {
	width: 12%;
}


.athlete_rankings_list-top-item.rating {
	width: 22%;
}

.athlete_rankings_list-row {
    	font-size: 0.7rem;
}

#athlete-value-slider {
	width: 200px;
}

.athlete-wrapper {
        min-width: 280px;
}

.charts-container {
	flex-direction: column;
	align-items: center;
	margin: 0px;
}

.chart-widget {
	width: 60%; 
	margin-bottom: 20px;
}

#countdown {
    	font-size: 13px;
}

.div-header {	
	font-size: 24px; 
}

.user_rankings_list-top {
    font-size: 0.8rem;
}

.user_rankings_list-top-item.player {
    	width: 60%;
}

.user_rankings_list-row-item.player {
    	width: 45%;
}


.select2-selection,
.select2-container {
    	width: 175px !important;
}

.selection-tile {
    	padding: 10px;
}

.ur-frontend-form.login {
    padding: 20px;
}

.world_rankings_list-row {
    	gap: 5px;
}

.world_rankings_list-row-item.athlete {
    	width: 48%;
}

.world_rankings_list-row-item.rank,
.world_rankings_list-row-item.delta {
    	width: 10%;
	padding: 0px;
}

}
