@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');


/* wqy let sidebar take whole viewport */
html, body {
	height: 100%;
	margin: 0;
}
/* wqy let sidebar take whole viewport */

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: bold;
  }

html {
	font-size: 1rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family:'Poppins',sans-serif;
}

body {
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #fff;
	font-family:'Poppins',sans-serif;
}

.modal-xl {
    max-width: 98% !important;
}
.modal {
    overflow-y: auto;
}
.modal-lg{
    max-width: 80% !important;
}

.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.list-group-item {
    color: black;       
    background-color: white;  
    border: none; 
}
.bigger-font {
    font-size: 15px;
}

/* scroll bar */
/* Style for WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 12px; /* Width of the scrollbar */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
	background: #f1f1f1; /* Light grey background for the track */
	border-radius: 10px; /* Optional: round the track edges */
}

/* Handle of the scrollbar */
::-webkit-scrollbar-thumb {
	background-color: #888; /* Darker grey for the handle */
	border-radius: 10px; /* Rounded edges on the handle */
	border: 2px solid #f1f1f1; /* Creates padding between track and handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background-color: #555; /* Darker color when hovering over the scrollbar */
}

/* Firefox scrollbar styling */
html {
	scrollbar-width: thin; /* Makes scrollbar thinner */
	scrollbar-color: #888 #f1f1f1; /* Handle color and track color */
}


/* wqy help page */
.sidebar .nav-link {
	color: black;
	background-color: white;
}

/* make content fill whole screen */
.row.help-page {
    min-height: 100vh;
}

.sidebar {
	background-color: white;
}

.sticky-sidebar {
    position: sticky;
    top: 0;
}

/* new mobile */
@media (max-width: 767px) {
	.mobile-sidebar {
		position: sticky;
		top: 0;
		left: 0;
		height: 100vh;
		width: 60px;
		background-color: #f8f9fa;
	}

	.mobile-sidebar .nav-link {
		text-align: center;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.mobile-sidebar .nav-link i {
		font-size: 24px;
	}

	.mobile-sidebar .nav-link.active {
		color: white;
		background-color: #0d6efd;
	}
}

/* back to top btn */
#btn-back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 1;
    padding: 0.2rem 0.75rem;
}

/* slide movement for back to top btn */
#btn-back-to-top.slide-out {
	transform: translateX(100px);
	opacity: 0;
}
