html, body {
	height: 100%;
	margin: 0;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	color: #101018;
	font-size: 13.5px;
	line-height: 1.6;
}


/* Heading styles */
h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

a {
	color: #007bff;
	text-decoration: none;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

.user-info {
	line-height: 1.2;
}


.tab-container {
	position: relative;
	z-index: 1;
}

.nav-tabs {
	border-bottom: none;
}

.nav-tabs .nav-link {
	border: 1px solid #000000;
	border-radius: 5px;
	margin-right: 5px;
	padding: 10px 15px;
	color: #5C6F88;
	transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link.active {
	background-color: #007bff;
	color: #ffffff !important;
	border-color: #007bff;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-tabs .nav-link:hover {
	background-color: #007bff;
	color: #ffffff !important;
	border-color: #007bff;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Highlight shadow on hover */
	text-decoration: none;
}

.tab-pane {
	padding: 0px;
}

.custom-select {
	appearance: none;
	position: relative;
	padding-right: 30px;
	background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') no-repeat right 10px center;
	background-color: white;
	height: calc(2.25rem + 2px);
}

input.form-control,
select.form-control {
	font-size: 13.5px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

button.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
	margin-left: 10px;
}

button.btn-secondary {
	margin-left: 10px;
}

.filter-section .fas {
	margin-left: 5px;
}

.filter-section {
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: white;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	border: 0.5px solid #eee;
}

.main-tab-content {
	overflow-y: auto;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 0.25rem;
	transition: box-shadow 0.3s ease;
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}

@-moz-document url-prefix() {
	.main-tab-content {
		scrollbar-width: auto;
	}
}

.table-container {
	background-color: white;
	border-radius: 0.5rem;
	padding: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-lg {
	padding: 7px 4px;
	border-radius: 25px;
	width: 100px;
	height: 35px;
	font-size: 13.5px;
}

.d-flex.justify-content-between {
	gap: 15px;
}

.small-space{
	background-color: yellow;
}

#toggle-filter {
	border: none;
	background-color: transparent;
	color: inherit;
	padding: 0;
	font-size: 13.5px;
}

#toggle-filter:hover {
	background-color: transparent;
	color: inherit;
}

#toggle-filter:focus {
	outline: none;
}

.layout-container {
	display: flex;
	min-height: 100vh; /* Ensure the layout takes the full viewport height */
}


.mainbar {
	flex: 1; /* This makes the mainbar take up the remaining space */
	background-color: #fff; /* Background color for mainbar */
	padding: 20px;
	box-sizing: border-box;
}

.sidebar {
	background-color: #ffffff; /* Background color for sidebar */
	padding: 20px;
	overflow-y: auto;
	padding-right: 10px;
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
	display: flex;
	flex-direction: column;
}

.sidebar::-webkit-scrollbar {
	width: 5px;
}

.sidebar::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}

.sidebar::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}


.table {
	margin-top: 0rem;
	border-collapse: collapse;
}

.table-bordered thead th,
.table-bordered tbody td {
	border-top: none;
}

.table-bordered tbody td:not(:first-child):not(:last-child),
.table-bordered thead th:not(:first-child):not(:last-child) {
	border-left: none;
	border-right: none;
}

.table-bordered tbody td:first-child,
.table-bordered tbody td:last-child,
.table-bordered thead th:first-child,
.table-bordered thead th:last-child {
	border-left: none;
	border-right: none;
}

.table-bordered {
	border-collapse: collapse;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #dee2e6;
	font-size: 8pt;
	vertical-align: middle;
	white-space: nowrap;
}

.table-bordered tr th {
	/* min-width: 150px;  */
	height: 50px;
}

.table-bordered td {
	width: 196.57px;
	height: 67.01px;
	overflow: hidden;           /* Hides the overflow */
	text-overflow: ellipsis;    /* Shows the ellipsis (...) */
	white-space: nowrap;        /* Prevents wrapping to the next line */
	vertical-align: middle;     /* Vertically center the content */
	padding: 8px;               /* Optional: adjust padding to improve readability */
	box-sizing: border-box;
}

.table-bordered thead tr {
	height: 20px;
}

.table-bordered thead th {
	vertical-align: middle;
	/* text-align: left;  */
}

.table-bordered tbody tr {
	font-weight: normal;
}

.table-bordered tr.col-highlight {
	border-top:none!important;
	border-bottom: none!important;
}

.table-bordered tr.col-highlight th {
	text-align:center;
	height: 20px;
	font-size:12px;
}


.table-bordered tr th.blue-bar {
	background-color: rgba(23, 191, 228, 0.39);
	background: rgba(23, 191, 228, 0.39);
	padding: 12px 7px;
	box-shadow: inset 0 0 0 5px white;
	text-align: center;
	vertical-align: middle;
}

.table-bordered tr th.purple-bar {
	background-color: rgba(23, 90, 228, 0.39);
	background: rgba(23, 90, 228, 0.39);
	padding: 12px 7px;
	box-shadow: inset 0 0 0 5px white;
	text-align: center;
	vertical-align: middle;
}

.table-bordered tr th.green-bar {
	background-color: rgba(108, 251, 96, 0.39);
	background: rgba(108, 251, 96, 0.39);
	padding: 12px 7px;
	box-shadow: inset 0 0 0 5px white;
	text-align: center;
	vertical-align: middle;
}

.table-bordered tr td.row-blue-bar {
	background-color: rgba(231, 248, 252, 1);
	background: rgba(231, 248, 252, 1);
}

.outer-elevated-select{
	background-color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	margin-bottom: 20px;
	border: 0.5px solid #eee;
	flex: 1;
	min-height: 100px; /* Set your desired minimum height */
	max-height: 400px; /* Set your desired maximum height */
	overflow-y: auto; /* Allow vertical scrolling when content exceeds max height */
	position: relative;
	padding:1rem;
}

.outer-elevated {
	background-color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	/* padding: 15px; */
	margin-bottom: 20px;
	border: 0.5px solid #eee;
	flex: 1;
	min-height: 100px; /* Set your desired minimum height */
	max-height: 400px; /* Set your desired maximum height */
	overflow-y: auto; /* Allow vertical scrolling when content exceeds max height */
	position: relative;
	padding-bottom:20px;
}
.outer-elevated .form-label{
	padding-left: 12px;
	padding-top: 5px;
}

.form-label-container {
	position: sticky; /* Make this container sticky */
	top: 0;          /* Stick to the top */
	background-color: white; /* Set background color to avoid overlap with scrolling content */
	z-index: 10;     /* Make sure it stays above other content */
}

.form-check-container {
	padding-top: 20px; /* Optional: Adds some space between the label and the checkboxes */
}

.divider {
	border: none;
	height: 1px;
	background-color: #7e7a7a;
	margin-top: 10px;
	margin-bottom: 15px;
}

.form-check {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.drag-icon {
	font-size: 12px;
	color: #35353A;
	cursor: move;
	padding-right: 20px;
}

.add-btn{
	cursor: pointer;
	background-color: rgba(23, 90, 228, 1);
	padding: 5px;
	font-size: 10px;
	color: white;
	background: rgba(23, 90, 228, 1);
	border-radius: 5px;
}
.select-arrow {
	position: relative;
	width: 100%;
}

.select-arrow select {
	appearance: none; /* Removes default arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 8px 16px;
	width: 100%;
	font-size: 14px;
}

.select-arrow:after {
	content: '\25BC'; /* Unicode for down arrow */
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none; /* Allows interaction with the select dropdown */
	font-size: 7px;
	color: #333;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

html {
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}

.form-check-input {
	margin-left: 10px;
	margin-right: 10px;
}

.form-label {
	font-weight: bold;
	font-size: 1.1rem;
	color: #333;
}

.container-custom-width {
	position: relative;
	min-height: 100vh;
	padding-bottom: 60px;
}

.footer {
	background-color: #5a5a5a;
	color: white;
	padding: 20px 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}

.footer a {
	color: white;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.login-btn{
	background-color: #D7410B;
	color: #ffffff;
	border: 0;
	border-radius: 5px;
	padding: 8px;
}

.form-container {
	flex-grow: 1;
}

.login-a-custom{
	font-size: 15px;
	text-decoration: none;
	font-weight: normal;
}

@media (max-width: 768px) {
	.footer .container {
		text-align: center;
		flex-direction: column;
	}
	.footer .company-name, .footer .copyright {
		margin-bottom: 10px;
	}
	.login-btn{
		width: 100%;
	}
}

.ft-12{
	font-size: 12px !important;
}

.ft-15{
	font-size: 12px !important;
}

.head-btn{
	padding: 10px 20px 10px 20px;
	background-color: #ffffff !important;
	color: #113006 !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
}

.ml-4{
	margin-left: 10px;
}

.tab-active{
	background-color: #175AE4 !important;
	color: white !important;
	border: 1px solid #175AE4;
}

.loader-overlay-livewire{
	display: none;
	background: white;
	opacity: 0.6;
	color: #666666;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 5000;
	top: 0;
	left: 0;
	float: left;
	text-align: center;
	padding-top: 25%;
}

.ft-20{
	font-size: 20px;
}

.active{
	/* color: green !important; */
	font-weight: bold;
}

#navbarNav{
	background-color: aliceblue;
	border-radius: 15px;
}

.overview-table thead tr:nth-child(1) th { position: sticky; top: 0; }

.responsive-tabs {
	height:75px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.responsive-tabs .nav-item {
	white-space: nowrap;
}

#filter-form {
	transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
	.responsive-tabs {
		flex-wrap: nowrap;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
}


.user-info {
	line-height: 1.2;
}
.header-line {
	width: calc(100% - 180px);
	margin-left: auto;
}
.fixed-top {
	position: fixed;
	height:100px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1030; /* Ensure header is above other elements */
	background-color: white; /* Ensure the header has a background color */
}
.content-top{
	margin-top:0px;
}

/* 29-oct-2024 */
.fixed-table-container {
	max-height: calc(100vh - 100px); /* Adjust based on desired height */
	overflow-y: auto;
	overflow-x: auto; /* Enable horizontal scroll */
	max-width: 100%; /* Ensures the table does not exceed the screen width */
}

.fixed-table-container .table {
	width: 100%; /* Makes the table use the available width */
	min-width: 800px; /* Optional: sets a minimum width for readability */
}

.fixed-table-container .table thead {
	position: sticky;
	top: 0;
	background-color: white; /* Keeps header background visible */
	z-index: 1;
}

/* Sidebar with fixed height based on viewport size */
.sidebar {
	height:120vh; /* Adjust height as needed */
	overflow-y: auto; /* Allow vertical scrolling if content exceeds height */
}

/* Wrapper to align dropdown to the right */
.dropdown-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

/* Dropdown with auto width based on selected option */
.auto-width-dropdown {
	width: auto;
	min-width: 85px; /* Minimum width to maintain layout */
	padding-right: 1.5rem;
	text-align: left; /* Align text to the left */
}

/* Adjust width dynamically based on the selected option */
.auto-width-dropdown option {
	width: auto;
	text-align: left; /* Left align option text */
}

/* Apply thin scrollbars across the site */
* {
	scrollbar-width: thin; /* For Firefox */
	scrollbar-color: #748278 #e9f0ea;
}

/* Thin scrollbar for WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 1px /* Set the width even thinner */
	height: 1px
}

::-webkit-scrollbar-track {
	background: #e9f0ea; /* Or any desired background color */
}

::-webkit-scrollbar-thumb {
	background-color: #e9f0ea; /* Scrollbar color */
	border-radius: 1px;        /* Rounded edges for the scrollbar */
	border: 1px solid #748278;
}


.outer-wrapper {
	max-height: auto;
	overflow: hidden;
}

.inner-content {
	height: 100%;
	overflow-y: scroll;
	padding-right: 2px;
	box-sizing: content-box;
	scrollbar-width: none;
}

.inner-content::-webkit-scrollbar {
	display: none;
}

.fixed-tabs {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: white;
	z-index: 1025;
	display: flex;
	justify-content: center;
}

/*.content-top{
	margin-top:50px;
}*/

.mb-10{
	margin-bottom: 10px;
}

.btn-filter-reset{
	background-color: #6c757d;
	color: #ffffff;
	padding: 5px;
	border-radius: 5px;
	border-color: #6c757d;
}

.btn-search{
	background-color: #007bff;
	color: #ffffff;
	padding: 5px;
	border-radius: 5px;
	border-color: #007bff;
}

.btn-filter-search{
	background-color: #007bff;
	color: #ffffff;
	padding: 5px;
	border-radius: 5px;
	border-color: #6c757d;
}

.fl-right{
	float: right !important;
}

.w-100{
	width: 100% !important;
}

.u-logo{
	width: 40px; height: 40px; border-radius: 50%;
}

.h-logo{
	width: 50px; height: auto
}

.by-text{
	font-size: 25px;
	font-weight: bold;
}

/*.h-p{
	top: 13px;
	position: relative;
}*/

.header-line{
	bottom: 15px;
	position: relative;
	margin-left: auto;
}

@media (min-width: 1024px) and (max-width: 1280px) {
	/* Styles for small desktop screens */
	.header-line {
		width: calc(100% - 110px);
	}

}

@media (min-width: 1281px) and (max-width: 1500px) {
	/* Styles for medium desktop screens */
	.header-line {
		width: calc(100% - 160px);
	}

}

@media (min-width: 1501px) {
	/* Styles for large desktop screens */

	.header-line {
		width: calc(100% - 185px);
	}

}

.shaded-table tr:nth-child(even) td{
	background-color: #f0f0f0 !important; /* Light gray */
}

.shaded-table tr:nth-child(odd) td{
	background-color: #ffffff !important; /* Light blue */
}


/* Closed sidebar styling */
#filterSidebar {
	height: 107vh;
	background-color: #ffffff;
	border-left: 1px solid #ddd;
	overflow-x: hidden;
	transition: width 0.3s ease;
}
/* Open sidebar width */
#filterSidebar.open {
	width: auto;
}

#filterSidebar-admin {
	height: 92vh;
	background-color: #ffffff;
	border-left: 1px solid #ddd;
	overflow-x: hidden;
	transition: width 0.3s ease;
}
/* Open sidebar width */
#filterSidebar-admin.open {
	width: auto;
}
/* Toggle button to position on page */
#toggleButton {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}
.vertical-filter {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ddd;
	position: fixed;
	left: 23px;
}

.vertical-filter .filter-label {
	writing-mode: vertical-lr;
	transform: rotate(360deg);
	font-size: 15px;
	margin-top: 10px;
}

.vertical-filter .filter-icon {
	font-size: 15px;
	color: #000000;
	writing-mode: vertical-lr;
	transform: rotate(90deg);
	margin-top: 10px;
}

.pointer{
	cursor: pointer;
}

.fi-pane{
	height: 85vh;
	border: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}

.fi-pane-admin{
	height: 72vh;
	border: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}

.c-w-filter-close{
	flex: 0 0 auto;
	width: 3.333%;
}

.c-w-content-full{
	flex: 0 0 auto;
	width: 96.6667%;
}

.c-w-filter-open{
	flex: 0 0 auto;
	width: 22%;
}

.c-w-content-shrink{
	flex: 0 0 auto;
	width: 78%;
}

.resent-btn{
	float: right;font-weight: normal;
}

.ml-5{
	margin-left: 5px;
}

.logout-dropdown{
	border-radius: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: white;
}

.deal_blue_header{
	background-color: #CEDDFA !important;
}
.deal_blue_td{
	background-color: #E7EEFD !important;
}
.deal_green_header{
	background-color: #40E41763 !important;
	white-space: wrap !important;
}
.deal_green_td{
	background-color: #EFF4EE !important;
}

.light_blue_td{
	background-color: #E7F8FC !important;
}

.light_blue2_td{
	background-color: #E0EBFA !important;
}

.blue_td{
	background-color: #CEDDFA70 !important;
}
.cpq-pagination .text-muted {
	margin-right: 15rem;
}
.autocomplete-dropdown {
	position: absolute;
	z-index: 1000;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	background: white;
	border: 1px solid #ddd;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-item {
	padding: 8px 12px;
	cursor: pointer;
}

.dropdown-item:hover {
	background-color: #f8f9fa;
}


/* Add to your CSS */
.create-product-form {
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.search-btn {
	position: relative;
	min-width: 100px;
}

.search-btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255,255,255,0.9);
	padding: 5px;
	border-radius: 3px;
}

.form-label {
	font-weight: 500;
}

.search-popup {
	position: fixed;
	top: 200px;
	left: 400px;
	z-index: 9999;
	background: white;
	border: 1px solid #ddd;
}

.search-popup-container {
	position: fixed;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	z-index: 10000;
	overflow: hidden;
	font-family: sans-serif;
}

.search-popup-header {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.search-input-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
	justify-content: space-between; /* Ensure buttons and input are spaced */
}

.search-label {
	margin-right: 10px;
	font-size: 16px;
	font-weight: bold;
}

.input-container {
	position: relative;
	flex-grow: 1; /* Makes the input field fill the available space */
	display: flex;
	justify-content: space-between; /* Ensures space between input and buttons */
}

.search-input {
	width: 100%; /* Makes the input field fill the available space */
	padding-left: 30px; /* Space for the magnifier icon */
}

.magnifier-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #ababab;
	pointer-events: none;
}

.search-actions {
	display: flex;
	gap: 10px; /* Spacing between buttons */
	margin-left: 10px;
}

.cancel-btn, .save-btn {
	padding: 5px 10px;
	font-size: 14px;
	cursor: pointer;
	border: none;
	border-radius: 4px; /* Rounded corners for buttons */
}

.save-btn {
	background-color: #007bff;
	color: white;
}

.save-btn:disabled {
    background-color: #ccc;
	color: #666;
	cursor: not-allowed; 
	opacity: 0.7;
}

.cancel-btn {
	background-color: #f0f0f0;
	color: #333;
}

.results-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.results-table th,
.results-table td {
	padding: 12px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
}

.result-row:hover {
	background-color: #f3f8ff;
	cursor: pointer;
}

.product-checkbox {
	margin-right: 8px;
}

.search-popup-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	background: #f9f9f9;
	border-top: 1px solid #ddd;
}

.manual-link {
	font-size: 12px;
	color: #0057e7;
	text-decoration: underline;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-btn {
	border: none;
	background: transparent;
	font-size: 18px;
	cursor: pointer;
}

.table-update-span{
	float: right;
	font-size: 12px;
	color: gray;
}

.ft-20{
	font-size: 15px;
}

.b-t {
	border-collapse: collapse;
	width: auto;
	max-width: 100%;
}

.i-w-60{
	width: 60px !important;
}

.i-w-70{
	width: 70px !important;
}

.i-w-80{
	width: 80px !important;
}

.i-w-100{
	width: 100px !important;
}

.block{
	display: block !important;
}
.tags-input-container {
	max-width: 600px;
}

.tags-input {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 6px;
	border: 1px solid #ccc;
	border-radius: 6px;
	min-height: 42px;
	cursor: text;
	background-color: #ffffff;
}

.tags-input input {
	border: none;
	flex: 1;
	padding: 6px;
	font-size: 14px;
	min-width: 120px;
	outline: none;
	width: 800px;
}

.tag {
	background-color: #007BFF;
	color: white;
	border-radius: 20px;
	padding: 6px 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	font-size: 13px;
}

.tag button {
	background: none;
	border: none;
	color: white;
	font-weight: bold;
	margin-left: 5px;
	cursor: pointer;
}

#column-dropdown, #autocomplete-dropdown {
	max-height: 200px;
	overflow-y: auto;
}

.w-50{
	width: 50% !important;
}


.sc-btn{
	margin-left: 10px;
	border-radius: 5px;
	background-color: #007bff;
	color: white;
	border-color: #007bff;
}

.can-btn{
	margin-left: 10px;
	border-radius: 5px;
	background-color: #DE3163;
	color: white;
	border-color: #DE3163;
}

.overview-horizontal-filter {
  display: flex;
  flex-direction: row;           
  justify-content: center;
  align-items: center;
  border: 1px solid black; 
  left: 0;
  width: 25%;                   
  background-color: #fff;      
  padding: 10px;    
  border-radius: 5px;           
}

.overview-horizontal-filter .filter-label {
  font-size: 15px;
  margin: 0 5px;                
  writing-mode: horizontal-tb;   
  transform: none;  
}            

.overview-horizontal-filter .filter-icon {
  font-size: 15px;
  color: #000000;
  margin: 0 10px;
  writing-mode: horizontal-tb;
  transform: none;
}

.overview-outer-elevated-select{
	background-color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	margin-bottom: 20px;
	border: 0.5px solid #eee;
	flex: 1;
	min-height: 100px; /* Set your desired minimum height */
	max-height: 400px; /* Set your desired maximum height */
	overflow-y: auto; /* Allow vertical scrolling when content exceeds max height */
	position: relative;
	padding:1rem;
}

.overview-outer-elevated {
	background-color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	/* padding: 15px; */
	margin-bottom: 20px;
	border: 0.5px solid #eee;
	flex: 1;
	min-height: 100px; /* Set your desired minimum height */
	max-height: 400px; /* Set your desired maximum height */
	overflow-y: auto; /* Allow vertical scrolling when content exceeds max height */
	position: relative;
	padding-bottom:20px;
}
.overview-outer-elevated .form-label{
	padding-left: 12px;
	padding-top: 5px;
}

.overview-inner-content {
	height: 100%;
	overflow-y: scroll;
	padding-right: 2px;
	box-sizing: content-box;
	scrollbar-width: none;
}

.overview-inner-content::-webkit-scrollbar {
	display: none;
}

.overview-horizontal-filter-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  /* border: 0 solid #eee; */
  opacity: 0;
}

.overview-horizontal-filter-collapsible.open {
  max-height: 500px;
  /* border-width: 1px; */
  padding: 10px;
  opacity: 1;
  margin-top: 10px;
}

.bar-d {
  width:50% !important;
}

.green-bg{
	background-color: #40E41763;
}