	/* Bootstrap 5.3 Input Style for Select2 */
.select2-container--bootstrap-5 .select2-selection--single {
	height: calc(2.5rem + 2px) !important;
	padding: 0.375rem 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	box-shadow: none;
	transition: border-color 0.15s, box-shadow 0.15s;
	padding-right: 2.25rem;
	position: relative;
}
/* Rendered Placeholder Style */
.select2-container--bootstrap-5 .select2-selection__rendered .select2-selection__placeholder {
	line-height: calc(1.75rem);
	color: #595c5f;
	opacity: 0.90;
}
/* Hover Effect */
.select2-container--bootstrap-5 .select2-results__option--highlighted {
	background-color: #0d6efd;
	color: white;
}
/* Scrollbar for Dropdown */
.select2-container--bootstrap-5 .select2-results__options {
	max-height: 169px;
	overflow-y: auto;
}
.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar {
	width: 6px;
}
.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar-thumb {
	background-color: #0d6efd;
	border-radius: 3px;
}
.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar-track {
	background: #f1f1f1;
}
/* Search Field Styling */
.select2-search__field {
	padding: 0.375rem 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	width: 100%;
}
/* Focus Styling */
.select2-container--bootstrap-5 .select2-selection--single:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	outline: none;
}
/* Invalid State Styling */
.select2-container--bootstrap-5 .select2-selection--single.is-invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(1.6em  + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
/* Arrow Styling */
.select2-container--bootstrap-5 .select2-selection__arrow {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	transition: transform 0.3s;
}
/* Default Arrow */
.select2-container--bootstrap-5 .select2-selection__arrow::after {
	content: "▼";
	font-size: 0.75rem;
	color: #6c757d;
}
/* Rotate Arrow When Dropdown Opens */
.select2-container--bootstrap-5.open .select2-selection__arrow {
	transform: translateY(-50%) rotate(180deg);
}
/* Rotate the arrow when the dropdown is opened */
.select2-container--bootstrap-5.open .select2-selection__arrow::after {
	transform: rotate(180deg);
}
.select2-container .select2-selection--single .select2-selection__rendered{
	padding-left: 0px !important;
}