
* {
	font-size: 13px;
}
body {
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  height: 100vh;
}

/* Prevent horizontal scrolling to hide off-screen menu */
html, body {
    overflow-x: hidden;
}

/* Ensure the main container doesn't create horizontal scroll */
.container-fluid {
    overflow-x: hidden;
}

@media (min-width: 992px) { /* lg and up */
  .text-lg-nowrap {
    white-space: nowrap !important;
  }
}

table { /* means it will inherit from parent, and user agent cannot override */
  font-size: 100% 
}

.noborder {
  border: none!important;
}

/* Override Bootstrap link styles at Rick's request, Nov 2025, NOTE: they do not want menu color overwritten, menu should be black */
a {
    color: #0056b3 !important; /* Darker blue (Bootstrap's hover color) */
}

a:hover {
    color: #007bff !important; /* Lighter blue (Bootstrap's default color) */
    text-decoration: underline !important; /* Keep underlined on hover */
}
/* Exclude menu links from global link styling */
nav .m-menu ul li a,
nav .m-menu ul li label {
    color: #333 !important;
    text-decoration: none !important;
}
nav .m-menu ul li a:hover,
nav .m-menu ul li label:hover {
    color: #333 !important;
    text-decoration: none !important;
}
/* If you want to exclude specific elements like navigation links */
a.nav-link {
    color: #333 !important; /* Keep nav links their current color */
    text-decoration: none !important; /* Remove underline from nav links */
}
a.nav-link:hover {
    color: #007bff !important;
    text-decoration: none !important;
}
/* -- end override bs links -- */


/*--- FORMS navigation tabs/panes ---*/

#formsnav .nav-link {
  color: #000;
  cursor: pointer;
}

#formsnav .nav-link:hover {
  color: #007bff;
}

#formsnav li a { 
  background-color:#d8dde6; 
}
#formsnav li a.active { 
  background-color: #989ca3; 
  color: #ffffff !important;
}

.nav-tabs .nav-link:not(.active) {
    border-color: transparent !important;
}

.fieldset{
  border: 1px #000 solid;
}


blockquote {
	font-size: 1.0em !important;
}

#map {
	height: 100%;
}

input:focus {
  outline: none;
  box-shadow: none!important;
  /*Sometime the blue border you see is from the box-shadow and removing box-shadow will remove the border*/
}


/*--- Main Nav from hamburger ---*/

nav {
  background-color: #ffffff; /*Lokken yellow, old:#91cfa1 (green) */
  height: 50px;
  padding: 0 0px 0 16px; /* Left: 4px, Right: 16px - reduces right padding */
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  /* fade in checked menu */
}
nav .m-menu__checkbox {
  display: none;
}
nav label.m-menu__toggle {
  cursor: pointer;
}

nav .navXLlogo {
  display: inline;
  position: relative;
  top: 10px; /* was -4px */
}
nav .navXLicon {
  cursor: pointer;
  display: inline;
  font-size: 1.9rem;
  position: relative;
  top: 5px;
}
nav .navXLbox {
  display: inline;
  position: relative;
  top: 1px;
}

nav .navLGlogo {
  display: inline;
  position: relative;
  top: 10px;
}
nav .navLGicon {
  cursor: pointer;
  display: inline;
  font-size: 1.9rem;
  position: relative;
  top: 5px;
}
nav .navLGbox {
  display: inline;
  position: relative;
  top: 1px;
}
nav .navMDlogo {
  display: inline;
  position: relative;
  top: 10px;
}
nav .navMDicon {
  cursor: pointer;
  display: inline;
  font-size: 1.9rem;
  position: relative;
  top: 2px;
}
nav .navMDbox {
  display: inline;
  position: relative;
  top: -1px;
}
nav .navSMlogo {
  display: inline;
  position: relative;
  top: 10px;
}
nav .navSMicon {
  cursor: pointer;
  display: inline;
  font-size: 1.9rem;
  position: relative;
  top: 2px;
}
nav .navSMbox {
  display: inline;
  position: relative;
  top: -1px;
}
nav .navXSlogo {
  display: inline;
  position: relative;
  top: 10px;
}



nav .m-menu {
  position: absolute;
  top: 0;
  right: 0; /*was left:  0; */
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100%;
  -moz-transform: translate3d(450px, 0, 0); /* was -450px when menu was on left */
  -o-transform: translate3d(450px, 0, 0);
  -ms-transform: translate3d(450px, 0, 0);
  -webkit-transform: translate3d(450px, 0, 0);
  transform: translate3d(450px, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
nav .m-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5); 
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: none;
}
nav .m-menu__header {
  padding: 0 16px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
nav .m-menu__header span {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

nav .m-menu .m-menu { /* this pushes the sub menus off screen */
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}

nav .m-menu ul {
  height: 100%;
  overflow-y: auto;
}
nav .m-menu ul li a, nav .m-menu ul li label {
  display: block;
  text-align: left;
  /*padding: 0 15px;*/
  line-height: 47px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
nav .m-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
nav .m-menu ul li .-invisible {
  border-bottom: 0;
}
nav .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
nav .m-menu__checkbox:checked ~ .m-menu__overlay {
  display: block;
}
nav .m-menu__checkbox:checked ~ .m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Match learner ID input height to logo height */
.lid-textXL, .lid-textLG, .lid-textMD, .lid-textSM, .lid-textXS {
    height: 45px !important; /* Matches the logo height */
    padding: 10px 12px !important;
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    vertical-align: middle !important;
}

/*--- END Main Nav ---*/

/* Auto width for select elements, use like: class="form-control select-auto-width" */
.select-auto-width.form-control {
    width: auto !important;
    min-width: 0;
    display: inline-block;
}

/* for tooltips with long content. Use like <i class="bi bi-info-circle wide-tooltip" data-toggle="tooltip" data-html="true" title="Lots of text here..."></i> */
.tooltip.wide-tooltip .tooltip-inner {
    max-width: 400px; /* or whatever width you want */
    width: 400px;
    white-space: normal;
}

/* Add this CSS to prevent flash of unstyled content (specifically on View Postings (viewempPostings.php) */
.page-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.page-content.loaded {
    opacity: 1;
}
/* Loading spinner for heavy sections */
.section-loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}

