 
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
	font-size: 62.5%;
}
body{	
	font-size: 1.6rem; 
	font-weight: 400; 
	font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul li a,a{
	text-decoration: none;
}
/*======================  Start Page  ======================*/

/* colors
Header groen: #167447
Header lichtgroen: #269B63
*/
.divider {
    border-top: 1px solid #ccc;
    margin: 5px 0;
    padding: 0;
}

.top_header_main img,
.footer_area img {
	width: 100%;
}

.top_header_main {
	background: #167447;
	padding: 10px 0;
}

.haeder_mail {
	align-self: center;
}
.header_mail ul {
	display: flex;
	gap: 25px;
	align-items: center;
}

.header_mail ul li a {
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #ececec;
}

.top_header_content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_logo_area {
	background: #F0F0F0;
}

.logo_left a img {
	min-width: 500px;
}

.logo_center img {
	width: 220px;
}

.logo_right a img { 
  width: 500px;     /* vaste breedte */
  height: 150px;    /* vaste hoogte */
}

.header_logo_flex {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 30px 0;
}

.logo a img {
	width: 65px;
}

@media (max-width: 768px) {
  .logo_left,
  .logo_right {
    display: none;
  }

  .header_logo_flex {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }
}


.header_menu {
	background: #167447;
	padding: 12px 0;
}

.logo_menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.login_btn {
    background: #fff;
    color: #000 !important;
    padding: 8px 25px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.login_btn:hover {
    background-color: #fff;
    color: #000 !important;
    border: none;
}


.menu ul {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.menu ul li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #269B63;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
}
.header_text {
	background: #269B63;
}

.header_info p {
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	padding: 7px 0;
}


/*======= Home Css ============*/

.home_area{
	background: #ECECEC ;
	padding: 16px;
	padding-bottom: 16px;
}
.single_home {
    border-radius: 10px;
    background: #FFF;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	word-wrap: break-word;
}

.single_home a {
    position: relative;
    color: inherit;

}

.single_home a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #269B63;
    transition: width 0.3s ease;
}

.single_home a:hover::before {
    width: 100%;
}

.single_home h3 {
    color: #167447;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single_home ul {
    list-style: none;
    padding: 0;
}



.single_home ul li p {
    word-wrap: break-word; /* Wrap long words in paragraphs */
}



.home_bblogo li a {
    color: #269B63;
    font-size: 16px;
}

.home_bblogo li {
    margin-bottom: 8px;
}

.home_bblogo li:last-child {
    margin-bottom: 0;
}

.divider {
    border-top: 1px solid #ccc;
    margin: 10px 0;
    padding: 0;
}



.libre_ul li a {
	width: 88px;
	height: 88px;
	border-radius: 25px;
	background: #4D9968;
	display: inline-block;
	color: #FFF;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
}

.libre_ul {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.division_name li {
    background: #4D9968;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 3px;
    cursor: pointer;
    color: #fff; /* Add this line to set text color explicitly */
}

.division_name li:last-child {
    margin-bottom: 0;
}

.division_name li:hover {
    background: #269B63; /* Add a different background color on hover if desired */
}








/*======================  Footer Css  ======================*/

.footer_area {
    background: #167447;
    color: #fff;
    padding: 40px 0;
    text-align: left;
}

.footer_area p {
    margin-bottom: 10px;
}

.footer_heading h3 {
    margin-bottom: 20px;
}

.footer_logo img {
    width: 150px;
}

.footer_description {
    color: #fff;
    margin-top: 20px;
}

.footer_heading {
    color: #fff;
}

.footer_links,
.footer_links_social {
    list-style: none;
    padding: 0;
}

.footer_links li,
.footer_links_social li {
    margin-bottom: 10px;
}

.footer_links_social li {
    display: inline-block;
    margin-right: 10px;
}

.footer_links a,
.footer_links_social a {
    color: #269B63;
    text-decoration: none;
}

.footer_links a:hover,
.footer_links_social a:hover {
    text-decoration: underline;
}

.footer_separator {
    border-top: 1px solid #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer_copy {
    color: #ddd;
    font-size: 14px;
	text-align: right;
	margin-right: 25px;
}

/* Media query for mobile responsiveness */
@media only screen and (max-width: 767px) {
    .footer_area {
        text-align: center;
    }

    .footer_logo img {
        width: 120px;
    }
}






/*======== Stand ============*/

.stand{
	/* DM: for stand single home*/
	margin-bottom: 16px;
}
.stand_area{
	background: #ECECEC ;
	padding: 78px 0;
}

.div_name li a {
	color: #000;
	font-size: 16px;
}

.margin_bottom{
	margin-top: 12px;
}

.table thead tr th {
	color: #269B63; 
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.table tbody tr th img {
	width: 46px;
	margin-left: 11px;
}
.table tbody tr:hover {
    background-color: #269B63; 
    color: #ffffff; 
}

.extra_menu {
	background: #269B63;
}

.extra_menu ul {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.extra_menu ul li {
    list-style: none;
}

.extra_menu ul li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.extra_menu ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.extra_menu ul li a:hover {
    color: #269B63;
}

.extra_menu ul li a:hover::after {
    width: 100%;
}

.extra_menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center; /* Change to flex-end to move the menu to the right */
}


.extra_menu ul li a {
	color: #fff;
	font-size: 16px;
	padding: 12px 0;
	display: inline-block;
	position: relative;
}

.table tbody tr td {
	font-size: 14px;
}

.extra_menu ul li a img {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.single_home h2 {
	color: #000; 
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}

.single_programm h3 {
	color: #4D9968;
	
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}

.program_header p { 
	color: #000;
	
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.program_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.main_programm {
	display: flex;
	justify-content: center;
	gap: 35px;
	align-items: center;
	padding: 35px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.main_programm p {
	position: relative;
}

.main_programm p:after {
	position: absolute;
	content: '';
	width: 1px;
	height: 20px;
	background-color: #4D9968;
	left: 0;
	right: 0;
	top: -100%;
	margin: 0 auto;
}

.main_programm p:before {
	position: absolute;
	content: '';
	width: 1px;
	height: 20px;
	background-color: #4D9968;
	left: 0;
	right: 0;
	bottom: -100%;
	margin: 0 auto;
}

.single_programm {
	margin-bottom: 25px;
}

.program_user_main {
	display: flex;
	align-items: center;
	gap: 25px;
}

.program_user h2 {
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-size: 44px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.program_user h5 {
	color: #000; 
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.single_home.program_user_main img {
	width: 132px;
}

.home_img_row {
	display: flex;
	flex-wrap: wrap;
	margin-top: 55px;
}

.home_img_row img:first-child,
.home_img_row img:last-child{
	flex: 0 0 30%;
	width: 100%;
}

.home_img_row img:nth-child(2){
	flex: 0 0 40%;
	width: 100%;
}

.chart_img img{
	width: 100%;
}

.game_header_left h5 {
	color: #4D9968;
	
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.game_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.game_main {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.game_footer {
	margin-top: 83px;
}

.game_main{
	margin-top: 68px;
}

.game_left img {
	width: 180px;
}

.game_left {
	text-align: center;
}

.game_p p {
	position: relative;
}

.game_p p::after {
	position: absolute;
	content: '';
	width: 1px;
	height: 50px;
	background-color: #4D9968;
	left: 0;
	right: 0;
	top: -59px;
	margin: 0 auto;
}

.game_p p:before {
	position: absolute;
	content: '';
	width: 1px;
	height: 50px;
	background-color: #4D9968;
	left: 0;
	right: 0;
	bottom: -59px;
	margin: 0 auto;
}
	.table td.datum-columnshort {
       display: none;
  	}
	.table th.numbercolumnshort {
       display: none;
  	}

.table th.achterstand-column-mobile {
	display: none;
}
.swipe-indicator {
	display: none;
  }

/* STAND MOBILE */

@media only screen and (max-width: 767px) {
	.table td.thuis-column,
	.table td.uit-column {
    	white-space: nowrap;
	}
    .stand_area {
        padding: 20px 0; /* Adjust the padding for better spacing on mobile */
    }

    .table thead tr th {
        font-size: 14px; /* Decrease font size for table headers on mobile */
    }

    .table tbody tr td {
        font-size: 12px; /* Decrease font size for table data on mobile */
    }

    .extra_menu ul {
        flex-direction: row;
    }
	.table td.team-column {
		max-width: 200px;
	  	overflow: hidden;
	  	white-space: nowrap;
	  	text-overflow: ellipsis;
  	}
	.table td.gespeeld-column {
		text-align: center;
	}
	.table th.achterstand-column {
		display: none;
	
	}
	.table th.achterstand-column-mobile {
		display: block; /* or use 'table-cell' or 'inline' depending on your layout */
	}
	td.uit-column {
		padding-right: 12px;
	}
	.swipe-indicator {
		display: block;
		text-align: center;
		padding: 10px;
		background-color: #269B63; /* Adjust the background color as needed */
	  }
  
	  .swipe-indicator::before {
		content: '\2192'; /* Unicode character for right arrow */
		font-size: 20px;
		color: #333; /* Adjust the arrow color as needed */
	  }
	  .table th.locatie-column {
		display: none;
	}
	.table td.locatie-column {
		display: none;
  	}
	  .table td.game-column {
		text-align: right;
  	}
	  .table th.nummer-column-uitslag {
		display: none;
	}
	.table td.nummer-column-uitslag {
		display: none;
  	}
	.table td.datum-column {
		display: none;
	}
	.table td.datum-columnshort {
       display: table-cell;
  	}
	.table th.numbercolumnshort {
       display: table-cell;
  	}
	.table th.numbercolumn {
       display: none;
  	}
}



 /* ======== TEAM SECTION  */

 .teamleider{
	margin-top: 16px;
 }


 /* ======== TEAM MENU SECTION  */

 .extra_menu_team {
    background: #269B63;
    border-radius: 15px; /* Add this line for rounded corners */
	margin-top: 12px;
}

.extra_menu_team ul {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.extra_menu_team ul li {
    list-style: none;
}

.extra_menu_team ul li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.extra_menu_team ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.extra_menu_team ul li a:hover {
    color: #269B63;
}

.extra_menu_team ul li a:hover::after {
    width: 100%;
}

.extra_menu_team ul {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center; /* Change to flex-end to move the menu to the right */
}

.extra_menu_team ul li a {
    color: #fff;
    font-size: 16px;
    padding: 12px 0;
    display: inline-block;
    position: relative;
}


/* ======= PLAYER SECTION =======*/

.table-player th {
	padding-right: 50px;
}
.quick-calculator form {
	display: flex;
	flex-direction: column;
	align-items: left;
}

.quick-calculator .calc-label {
	margin-bottom: 5px;
}

.quick-calculator .calc-input {
	padding: 5px;
	margin-bottom: 10px;
	width: 200px;
	box-sizing: border-box;
}

.quick-calculator .calc-btn {
	width: 150px;
	padding: 10px;
	background-color: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.quick-calculator .calc-btn:hover {
	background-color: #45a049;
}

.quick-calculator .calc-result {
	margin-top: 10px;
}

@media only screen and (max-width: 767px) {
	.table-player th {
		padding-right: 20px;
	}
}



/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px; /* Set width */
    border-radius: 5px;
    position: fixed; /* Position it fixed to center within viewport */
    top: 50%; /* Move it 50% from the top */
    left: 50%; /* Move it 50% from the left */
    transform: translate(-50%, -50%); /* Center it both horizontally and vertically */
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0; /* Initially hide the modal */
    transition: opacity 0.3s ease; /* Add transition for smooth opacity change */
}

/* When modal is displayed, show it */
.modal-content.show {
    opacity: 1;
}


/* Modal Close Button */
.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}
.form_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form_group label {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #4D9968;
    margin-bottom: 6px;
}

.form_group input {
    background: #FCFDFE;
    border: 1px solid #F0F1F7;
    border-radius: 8px;
    padding: 11px 16px;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    color: #4B506D;
    box-sizing: border-box;
}

.form_text {
    display: flex;
    justify-content: space-between;
}

.form_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 13px;
    letter-spacing: 0.1px;
    color: #9FA2B4;
    margin-bottom: 6px;
    cursor: pointer;
}
.form_text p:hover {
    color: #4D9968; /* Change text color to green when hovered over */
    cursor: pointer; /* Change cursor to pointer when hovered over */
}


.log_btn {
    color: white;
    background-color: #4D9968;
    border: 1px solid #4D9968;
    transition: background-color 0.3s ease;
    padding: 12px 0; /* Adjust padding to your preference */
    border-radius: 10px; /* Add corner roundness */
    text-align: center; /* Center align text */
    margin-top: 20px;
    width: 100%; /* Make button full width */
    box-sizing: border-box; /* Ensure padding doesn't increase button width */
}



.log_btn:hover {
    background-color: #63cc93;
}

.login_form h2 {
    color: #167447;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center; /* Center align the text */
}


/*  POPUP SECTION  */
.popup_flex {
	display: flex;
	max-width: 700px;
	width: 100%;
	justify-content: space-between;
	background: #177447;
	margin: 0 auto;
}

.popup_title {
	background: #fff;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 10px ;
}

.popup_title h4 {
	font-size: 20px;
	color: #177447;
}

.popup_title p {
	font-size: 16px;
	color: #177447;
}

.popup_right .popup_title h4 { 
	color: #fff;
}

.popup_right .popup_title p { 
	color: #fff;
}

.popup_right .popup_title {
	background: #269B64; 
}

.popup_left {
	flex: 0 0 40%;
}

.popup_middle {
	flex: 0 0 20%;
}

.popup_right {
	flex: 0 0 40%;
}

.popup_value h2 {
	font-size: 44px;
	text-align: center;
	color: #F9C31B;
}

.popup_right .popup_value h2 { 
	color: #fff;
}

.popup_value {
	background: #269B64;
	padding: 25px 0;
}

.popup_list_val ul li p {
	text-align: right;
	padding: 5px 15px;
	color: #F9C31B;
	font-size: 16px;
}

.popup_right .popup_list_val ul li p {
	text-align: left; 
	color: #fff; 
}

.popup_left .popup_list_val {
	border-top: 1px solid #867B5A;
	border-right: 1px solid #867B5A;
}

.popup_right .popup_list_val {
	border-top: 1px solid #867B5A;
	border-left: 1px solid #867B5A;
}

.popup_middle_title {
	border-bottom: 1px solid #867B5A;
	height: 62.7%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
    padding: 10px 0;
}

.popup_middle_title h4 {
	font-size: 16px;
	color: #fff;
}

.popup_bottom_title h2 {
	font-size: 32px;
	color: #fff;
}

.popup_middle_list ul li p {
	font-size: 16px;
	color: #fff;
	text-align: center;
	padding: 4px 0;
}

.popup_main_area {
	position: fixed;
	width: 100%;
	z-index: 99999;
	top: 200px; 
    display: none;
}

.popup_close {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.7);
	z-index: 99;
    display: none;
}

.mvp-tab-container {
    width: 80%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 16px;
}

.mvp-tab-link {
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: background-color 0.3s;
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
}


.mvp-tab-link.active {
    background-color: #ccc;
    border-bottom: 2px solid #4CAF50;
}

.mvp-tab-content {
    display: none;
    padding: 16px;
    border: 1px solid #ccc;
    border-top: none;
	background-color: #FFF;;
}

.mvp-tab-content.active {
    display: block;
	border-radius: 10px;
	margin-top: 16px;
}

.mvp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 16px;
}

.mvp-table th, .mvp-table td {
    text-align: left;
    padding: 12px;
}

.mvp-table tr {
    border-bottom: 1px solid #ddd;
}

.mvp-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.mvp-table .top-player {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.mvp-table .top-player td {
    padding: 16px;
}

@media (max-width: 768px) {
    .cijferpagina-desktop{
        display: none;
    }
}
