  .breadcrumbs li:last-child {
	background: none;  /* Removes the > for the last item */
}
.breadcrumbs li a:hover {
	cursor: pointer;
}
#Form_FO_Search label, #Form_FO_Share label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
#Form_FO_Search input[type='text'], #Form_FO_Search select, input[type='date'], #Form_FO_Share input[type='text'] {
	width: 330px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
/* Checkbox Styling */
#Form_FO_Search input[type='checkbox'], #Form_FO_Search input[type='checkbox']+label {
	font-weight: normal;
	margin-left: 5px;
	line-height: 1.5;
	vertical-align: middle;
	display: inline;
}
#Form_FO_Search input[type='submit'], 
#Form_FO_Search input[type='reset'], 
#fo_share_popup input[type='submit'],
#fo_share_popup input[type='reset'],
#fo_share_popup input[type='button'] {
	font-size: 16px;         
	border: none;  
	border-radius: 4px;     
	background-color: #dcdcdc;        
	cursor: pointer;         
	margin-right: 10px;      
	transition: all 0.3s ease; 
	width: 100px;
	height: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;	
}
#Form_FO_Search input[type='submit']:hover, #Form_FO_Search input[type='reset']:hover {
	background-color: grey;
	border-color: grey;
	color: #fff;
}
#FO_Search_Results tbody tr:hover  {
	background-color: #2196c5;
	color: #ffffff;
	cursor: pointer;
} 
#FO_Search_Results thead tr td{
	text-align: right;
	font-size: 80%;
	padding-right: 5px 
}
#FO_Search_Results thead tr th[data-sort-id]:hover {
	cursor: pointer;
}
#FO_Search_Results thead tr th > div {
	float: left;
} 
#FO_Search_Results thead th div[sort='asc']::after {
	content: '\2BC5';
	margin-left: 5px;
}
#FO_Search_Results thead th div[sort='desc']::after {
	content: '\2BC6';		
	margin-left: 5px;
}
#FO_Search_Results thead th[data-sort-id]:hover div:nth-child(2):not([sort])::after {
	content: '\2BC5';
	margin-left: 5px;		
}		
#FO_Search_Results_Page_Buttons .btn-primary {
	pointer-events: none;
}
#FO_Search_Results_Page_Buttons .btn-light:hover {
	background-color: grey;
	border-color: grey; /* Darker border on hover */
	color: #fff; /* Text color stays white */
	opacity: 0.8;
}
#FO_Search_Results .FO_Row_Selected {
	background-color: #015b86!important;
	color: #ffffff;
}
#FO_Detail_Div .no-borders {
	width: 80%;
	border: none;
	border-collapse: separate;
	border-spacing: 10px;
	margin: 0;
	padding: 0;
}
#FO_Detail_Div .no-borders td, #FO_Detail_Div .no-borders th {
	border: none; /* Remove cell borders */
	padding: 10px; /* Add padding inside cells for spacing */
	text-align: left; /* Optional: Align text to the left */
}
#fo_share_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
	backdrop-filter: blur(10px); /* Optional: apply blur to the overlay itself */
	z-index: 999; /* Make sure overlay is above content */
	display: none; /* Initially hidden */
}
.fo_share_popup {
	position: fixed;
	top: 45%;
	left: 50%;
	border-radius: 8px;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	z-index: 1000; /* Ensure the popup is above the overlay */
	border: 1px solid #ccc;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	display: none; /* Initially hidden */
}
.statusMessage {
	padding: 10px;
	border: 1px solid #ccc;
}
