main>.container {
	padding: 60px 15px 0;
}

img.brand-image {
	height: 30px;
}

.bg-header-nav {
	background-color: #FAFAFA;
	border-bottom: 1px solid #EEEEEE;
}

.navbar-brand {
	color: black;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
	color: black;
}

.navbar-nav .nav-link.disabled {
	color: grey;
}

.icon-heading {
	background-color: #55534E;
	padding: 5px;
	color: white;
	border-radius: 7px;
	font-size: 20px;
	position: relative;
	top: -5px;
}

.icon-grey {
	color: #55534E;
}

.underlined-heading {
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 8px;
}

.underlined-document {
	border-bottom: 1px dashed #DDDDDD;
}

a.underlined-document {
	text-decoration: none;
	color: black;
}

.link-unavailable {
	color: #CCCCCC;
}

.link-unavailable .icon-grey {
	color: #CCCCCC;
}

/**
 * Table changes to support more on-screen data
 */
.lean-table td,
.lean-table th {
	color: #000000;
	padding: 2px;
	font-size: 13px;
}

.lean-table th {
	padding-bottom: 10px;
	cursor: pointer;
}

.lean-table th span {
	padding: 0px;
}

.lean-table tbody tr:nth-child(odd) {
	background: #FAFAFA;
}

input.lean-table-search {
	border: 1px solid #EBEDF2;
	min-height: 30px;
}

i.lean-table-searchx {
	color: #666666;
	position: relative;
	left: -20px;
	cursor: pointer;
}

p.validation-error-text {
	color: #FF0000;
	font-size: 12px;
	margin-bottom: 0px;
}

.validation-error-border {
	border-color: #FF0000 !important;
}

.btn-group-xs>.btn,
.btn-xs {
	padding: .25rem .4rem;
	font-size: .7rem;
	line-height: .5;
	border-radius: .2rem;
	min-height: 20px;
	max-height: 20px;
}

#page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(146, 146, 146, 0.5); /* Semi-transparent background */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
  }
  
  .spinner-container {
	text-align: center;
  }
  
  .spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(0, 135, 155, 0.3);
	border-top-color: #00879b;
	border-radius: 50%;
	animation: spin 1s linear infinite;
  }
  
  #spinner-text {
	margin-top: 10px;
	color: #00879b;
	font-size: 18px;
	font-weight: bold;
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }
  
