.nav > li.dropdown {
	position: static;
}
.nav > li.dropdown .dropdown-menu {
	width:100%;
	text-align: left;
	left:0;
	right:0;
	font-size: 20px;
}
.nav > li.dropdown.open {
	position: static;
}
.nav > li.dropdown.open .dropdown-menu {
	text-align: left;
	left:0;
	right:0;
}
/* .nav-item:hover{
    background-color: #d2ecf6;
} */
.dropdown-menu>li {
	height:100%;
}
.content{
	padding:30px;	
}

/*hover dropdown*/
.navbar-nav li:hover .dropdown-menu {
	display: block;
}

#myBody {
    font-family: 'Noto Sans Thai', sans-serif;
	font-size: 20px;
}

#linkMenu {
    text-decoration: none;
    color: var(--bs-dark);
}

#linkMenu:hover {
    color: #00AEF3;
}

#headMenu {
    font-weight: bold;
    color: #00AEF3;
    padding-bottom: 30px;
	font-size: 20px;
}
#hrLine {
	border-top: 1px dashed #1F1C51;
	color: white;
}


#myBtn {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	width: 60px;
	background-color: #00AEF3; /* Set a background color */
	color: white; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
	background-color:#e8eaf6;; /* Add a dark-grey background on hover */
	color: #00AEF3;;
  }

  .nav > li.dropdown .dropdown-menu {
    width: 100%;
    text-align: left;
    left: 0;
    right: 0;
    font-size: 20px;

    max-height: 600px; /* ความสูงสูงสุดของเมนู */
    overflow-y: auto;  /* เพิ่ม scroll bar แนวตั้ง */
  }