/*body {
	margin: 0;
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;*/ /* Ensure vertical stacking of sidebar, title, and content */
	/*height: 100vh;
	background-color: #f8f9fa;*/ /* Background color for the body */
/*}*/

.title {
	color: rgba(29,31,33,0.75); /* Font color */
	font-size: 24px;
	text-align: left; /* Align title to the left */
	padding: 10px 20px; /* Padding inside the title */
	margin: 0; /* Remove default margin */
	border-bottom: 2px solid #e9ecef; /* Bottom border for separation */
}

.wrapper {
	display: flex;
	flex: 1;
	overflow: hidden; /* Hide overflow */
}

.sidebar {
	width: 160px;
	background-color: #f8f9fa;
	padding: 20px;
	/*box-shadow: 2px 0 5px rgba(0,0,0,0.1);*/
	overflow-y: auto; /* Scroll if content overflows */
}

.content-wrapper {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto; /* Scroll if content overflows */
	padding: 20px;
}

.content {
	background-color: #fff; /* White background for the content box */
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	flex-grow: 1;
	overflow-y: auto; /* Scroll if content overflows */
	display: flex; /* Ensure child elements expand properly */
	flex-direction: column; /* Stack tabs, dropdown, and content vertically */
}

.tabset {
	display: flex;
	justify-content: flex-start; /* Start tabs from the left */
	margin-bottom: 10px;
	border-bottom: 1px solid #e9ecef; /* Horizontal separator line */
}

.tab {
	padding: 10px 20px;
	cursor: pointer;
	background-color: transparent; /* Transparent background for tabs */
	border: none; /* Remove border */
	border-bottom: 2px solid transparent; /* Initially no underline */
	border-radius: 0;
	user-select: none; /* Prevent text selection */
	color: rgba(29,31,33,0.5); /* Lighter font color */
	transition: border-bottom-color 0.3s ease; /* Smooth transition for underline */
}

	.tab:hover,
	.tab.active {
		font-weight: bold; /* Bold font weight when hovered or active */
		border-bottom-color: #e9ecef; /* Underline color for active tab */
		color: rgba(29,31,33,0.75); /* Font color for active tab */
	}

		.tab.active:hover {
			font-weight: bold; /* Keep bold font weight when active tab is hovered */
		}

.tab-content {
	display: none; /* Initially hide tab content */
	padding: 20px;
	background-color: #fff; /* White background */
	flex-grow: 1;
	overflow-y: auto; /* Scroll if content overflows */
}

	.tab-content.active {
		display: block; /* Show active tab content */
	}

#chart {
	width: 100%; /* Ensure chart takes full width of its container */
	height: 100%; /* Ensure chart takes full height of its container */
	outline: none; /* Remove outline around the chart */
}

.select2-container--default .select2-selection--single {
	height: 38px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
}

	.select2-container--default .select2-selection--single .select2-selection__rendered {
		line-height: 36px;
		padding-left: 10px;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 36px;
		right: 10px;
	}

.dropdown {
	margin-bottom: 10px;
	position: relative;
	align-self: flex-start; /* Align dropdown to start from the left */
}

	.dropdown .select2-container {
		width: 200px; /* Adjust width as needed */
	}

.form-group {
	margin-bottom: 15px;
}

	.form-group label {
		display: block;
		margin-bottom: 5px;
		font-weight: bold;
	}

.thLessPadding thead th {
	padding: 10px 10px !important;
}