  <style>
.programfinder {
	display: flex;
}

checkbox-row-degrees{
	background-color: #F8FAFA;
}
checkbox-row-locations{
	background-color: #F8FAFA;
}

.filter-toggle {
	display: none;
	position: fixed;
	top: 265px;
	left: 0px;
	z-index: 1000;
	background-color: #FFD100;
	color: #003A5D;
	border: #FFD100;
	padding: 30px 5px;
	cursor: pointer;
	border-radius: 1px;
	writing-mode: vertical-rl;
	text-orientation: sideways;
}

#apply-filters-btn {
	display: none; /* Default hidden */
	width: 95%	
}
.filter-toggle-open {
	padding: 0px 24px;
	background-color: #003A5D;
	color: #FFD100;
	border-radius: 4px;
}

.filter-menu {
	width: 22%;
	height: 100%;
	background-color: #F8FAFA;
	padding: 20px;
	box-sizing: border-box;
	transition: transform 0.3s ease;
	bottom: 0;
	margin: 33px;
	border: solid 4px #B9E4FD40;
	border-radius: 4px;
}

.filter-menu.open {
	transform: translateX(0); /* Slide-in effect */
	width: 25%; /* Adjustable width for open state */

}


.main-content {
	width: 80%;
	padding: 20px;
	box-sizing: border-box;
}

.checkbox-row-locations {
	margin-top: 10px;
}
.checkbox-row-degrees {
	margin-top: 10px;
}


.btn-custom {
	width: 100%;
}

.filter-btn-div-left{
	width: 100%
}
.filter-btn-div-right{
	width: 0%
}
#reset-filters-btn{
	width: 100%;
}

/* Responsive adjustments */
@media screen and (max-width: 1138px) {
	.programfinder {
		flex-direction: column;
	}

	.filter-btn-div-left{
		width: 40%
	}
	.filter-btn-div-right{
		width: 40%
	}

	#reset-filters-btn{
		width: 100%;
	}
	.filter-toggle {
		font-size: 16px;
		font-weight: bold;
		text-transform: uppercase;
	}

	.filter-toggle-open {
		display: flex;
		padding: 0px 24px;
		background-color: #003A5D;
		color: #FFD100;
		width: 100%;
	}


	.filter-menu {
		width: 100%;
		position: fixed;
		top: 10px;
		left: 0;
		bottom: 0;
		height: auto;
		transform: translateX(-100%);
		z-index: 999; /* Keep it above other elements */
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		overflow-y: scroll;
		margin: 0px;
	}

	.filter-menu.open {
		transform: translateX(0); /* Slide-in effect */
		width: 50vw;

	}

	.main-content {
		width: 100%;
	}

	.button-row-locations {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}

	label {
		display: block;
		font-size: 14px;
		gap: 5px;
	}
	.btn-filter{
		font-size: 1rem;
	}
}

checkbox-row{	
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	border: 1px solid #ccc;
	background-color: #F8FAFA;
	text-align: center;
	margin: 5px;
	border-radius: 5px;
}
label {
	display: block;
}
.degree-type-wrapper, #wrapper .degree-type-wrapper {
	margin: 0 auto;
	padding: 0;
	display: flex;
	height:auto;
	max-width: 100%;
	flex-flow: column wrap;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(300px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Apply the animation to program cards */
.program-card.animate {
	animation: fadeIn 3.5s ease-in-out;
}

.program-name{
	margin-bottom: 20px !important;
}	
@media screen and (max-width: 1000px) and (min-width: 768px) {
	.program-name {
		font-size: 0.75rem !important;
		margin-bottom: 5px !important;
	}
}  
@media screen and (max-width: 767px) {
	.program-name {
		font-size: 1.3rem !important;
		margin-bottom: 0px !important;
	}
}
@media screen and (max-width: 767px) {
	.tax-chip {
		font-size: 0.9rem !important;

	}
}
.tooltip-container {
	display: inline-block;
}

.tooltip-icon {
	cursor: pointer;
	font-size: 14px;
	background-color: #0069A7;
	color: #FFD100;
	border-radius: 50%;
	padding: 0 6px;
	font-weight: bold;
}

/* Styled shared tooltip area */
.shared-tooltip-area {
	display: none;
	width: 100%;
	background-color: #dde5e9;
	color: #000;
	text-align: left;
	border-radius: 5px;
	padding: 10px 15px;
	margin: 10px 0;
	font-size: 14px;
	line-height: 1.4;
}
</style>