
/* neglect dark mode */
:root {
  --bs-body-bg: var(--bs-light);
  --bs-body-color: var(--bs-dark);
}

a {
  color: #005EAD;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #BE8A43;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

.btn-primary {
  color: #fff;
  background-color: #005EAD;
  border-color: #005EAD;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #005EAD;
  border-color: #005EAD;
}


html,
body {
  overflow-x: hidden;
  background-color: white;
}
body {
  padding-top: 56px;  
}

.navbar {
  height: 56px;  
  min-height: 56px;
  padding-top: 0;
  padding-bottom: 0;  
  display: flex;
  align-items: center;  
}

.navbar .navbar-nav .nav-link {
  padding-top: 0.5rem;  
  padding-bottom: 0.5rem;
  line-height: 1.5;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
    filter: none !important;
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}

.nav-underline .nav-link:hover {
  color: #343a40;
}

.nav-underline .active {
  font-weight: 510;
  color: #343a40;
}


@media (max-width: 767.97px) {
  .offcanvas-collapse {
    position: fixed;  
    top: 56px;
    bottom: 0;
    left: -100%;
    width: 100%;    
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    background-color: #fff;
    font-size: 18px;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }

  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@media (min-width: 768px) {
  .offcanvas-collapse {          
    position: static;
    visibility: visible;
    transform: none;
  }
}

.offcanvas-collapse a {
  color: #005EAD;  
}

.offcanvas-collapse a:hover {
  color: #BE8A43;
}

.table td, .table th {
  padding: 16px;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  align-items: start;
}

.staff-item {
  padding: 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  word-break: break-word;
}

@media (max-width: 767.97px) {
  .staff-list {
    grid-template-columns: 1fr;
  }
}
