@charset "UTF-8";

/*
 * UNJust suite-wide branding (UN-blue #5b92e5, header/case/search screen
 * styling). Source of truth is UNJust-Authorize/src/css/NewUJStyle.css --
 * this is a manually-synced copy for the Java apps, since there's no
 * automated cross-stack (npm <-> Maven) sharing set up. If you change one,
 * change the other. The @import lines from the React version are dropped
 * here since those are webpack-resolved npm package imports that don't work
 * in a plain served stylesheet -- the Java apps load the DataTables bs5 CSS
 * separately via <link>, from this same uj-frontend-assets jar.
 */




/* New UJ CSS Styling */


/* GENERAL STYLING - all pages */

/* header styling */
un-blue-text {
	color: #5b92e5;
}

.headerNameText {
	color: #5b92e5;
	font-size: 1.5em;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	

}
.searchResultsHeader{ 
	color: #5b92e5;
	font-size: 1.5em;
	font-family: Helvetica, sans-serif;
	font-weight: bold;
	display: flex;
	justify-content: center;

}

.headerEmailText {
	color: black;
	font-size: 1em;
	font-family: Helvetica, sans-serif;
	display: flex;
	justify-content: center;

}

.pageNoContentText {
	color: black;
	font-size: 3em;
	font-family: Helvetica, sans-serif;
	display: flex;
	justify-content: center;

}

.headerLinkText {
	color: #5b92e5;
	font-size: 1.0em;
	font-family: Helvetica, sans-serif;

}

/* Style the ui-include element */
ui-include {
	margin: 20px
}

/* ENTRY PAGE STYLING  */

#casesTable tbody tr.selected {
	color: green;
	background-color: greenyellow;
}

.un-blue-text-header {
	color: #5b92e5;
	background-color: bs-light;
}



.un-blue-text {
	color: #5b92e5;
}

.activeDivActive {
	color: #5b92e5;
	background-color: white;
	margin: 15px;
	font-weight: bold;
}

.activeDivArchived {
	background-color: #5b92e5;
	color: white;
	margin: 15px;
	font-weight: bold;
}


.buttons-excel {
	background-color: #5b92e5;

}

.buttons-copy {
	background-color: #5b92e5;
}

.buttons-csv {
	background-color: #5b92e5;
}

.buttons-pdf {
	background-color: #5b92e5;
}

.buttons-print {
	background-color: #5b92e5;
}



errorMessage {
	color: lightGreen;
}

.page-item.active .page-link {
	background-color: #5b92e5 !important;
	border: 1px solid black;
}

.page-link {
	color: black !important;
}

/* case screen styling */

.modal .modal-dialog-aside {
	width: 350px;
	max-width: 80%;
	height: 100%;
	margin: 0;
	transform: translate(0);
	transition: transform .2s;
}

.modal .modal-dialog-aside .modal-content {
	height: inherit;
	border: 0;
	border-radius: 0;
}

.modal .modal-dialog-aside .modal-content .modal-body {
	overflow-y: auto
}

.modal.fixed-left .modal-dialog-aside {
	margin-left: auto;
	transform: translateX(100%);
}

.modal.fixed-right .modal-dialog-aside {
	margin-right: auto;
	transform: translateX(-100%);
}

.modal.show .modal-dialog-aside {
	transform: translateX(0);
}

/* search screen styling*/

.docRanker {
	display: inline-flex;
	width: 300px;
}

.docRankText {
	width: 60%;
}

.docRankValue {
	width: 40%;
	color: #5b92e5;
	float: left;
	font-weight: bold;
}

.field_set {
	border: 1px;
	border-color: #5b92e5;
	border-style: solid;
}

.centerMOTD {
	margin: auto;
	width: 90%;
	border: 1px solid #5b92e5;
	padding: 10px;
	/*text-align: center;*/
}

.centerSearch {
	margin: auto;
	width: 100%;
	border: .5px solid #5b92e5;
	padding: 10px;
	/*text-align: center;*/
}

.centerButtons {
	margin: auto;
	width: 90%;
	padding: 10px;
	/*text-align: center;*/
}
#tableBody{
	/*display:none;*/
}
#docsBody{
	/*visibility:hidden;*/
	display:none;
}