html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

#hiddenFileInput {
    display: none !important;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 400;
}

a.pglink-red {
    color: #872434;
    text-decoration: none;
}


#page-footer hr {
    border-top: 2px solid #fff;
}
#page-footer .footerlinks .footnote {
    color: white;
}
#page-footer .footerlinks .footnote a {
    color: white;
}
#page-footer .footnote a:hover {
    color: orange;
}



.navbar-nav .nav-item .dropdown-menu {
    display: none;
    margin-top: -2px !important;
    border-style: solid;
    border-color: var(--bs-primary);
}
.navbar-nav .nav-item .dropdown-submenu {
    position: absolute;
    left: 100%;
    top: -7px;
}
.navbar-nav .nav-item .dropdown-menu-end {
    right: 0;
}

.navbar-nav .nav-item:hover > .dropdown-menu {
    display: block;
}
.navbar-nav .nav-item .dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}


.navbar-nav .nav-link {
    color: white;
}
.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
    background-color: white;
}

.navbar-nav .nav-item .dropdown-menu a {
    color: #872434;
}
.navbar-nav .nav-item .dropdown-menu li:hover > a {
    color: white;
    background-color: #872434;
}

.navbar-nav .nav-item .dropdown-menu button {
    background: none !important;
    border: none;
    color: #872434;
    cursor: pointer;
}

.navbar-nav .nav-item .dropdown-menu li:hover > form > button {
    color: white;
}
.navbar-nav .nav-item .dropdown-menu li:hover > form {
    background-color: #872434;
}

/* Required in site.css to apply to links with asp tag helpers */
a.resource-link {
    color: #872434;
    text-decoration: none;
}

/* Suspended user row data in tables should be strike through */
td.suspended {
    text-decoration: line-through;
}

/* Set tooltip max width large enough to fit text without wrapping */
.tooltip-inner {
    max-width: 500px;
}

/* Ensure select2 dropdowns occupy the full width of each column */
.select2-container {
    width: 100% !important;
    padding: 0;
}

.users-edit-col {
    width: 50px !important;
}

/* Overlay styling for loading spinners */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0px;
    left: 0px;
    opacity: 0.5;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.spinner {
    width: 3rem;
    height: 3rem;
    z-index: 20;
}

.readonly-input {
    background-color: #F4F4F4;
    cursor: default;
}

