/* Large WEKA logo + visible title */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 1px;                         /* space between logo and text */
  color: #fff !important;            /* white text on dark navbar */
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  text-indent: 0 !important;
  overflow: visible !important;
  padding-left: 0 !important;
  width: auto !important;
}

/* inject the logo before the text */
.navbar-brand::before {
  content: "";
  display: inline-block;
  width: 120px;                      /* same width as your original background box */
  height: 50px;                      /* taller than before for large logo */
  background: url('WEKA_logo.png') left center no-repeat;
  background-size: auto 36px;        /* logo height */
  flex-shrink: 0;
}

/* tweak for small screens */
@media (max-width: 767px) {
  .navbar-brand::before {
    width: 140px;
    background-size: auto 28px;
  }
  .navbar-brand {
    font-size: 16px;
    gap: 6px;
  }
}

img {
  max-width: 50%;
  height: auto;
}

.bs-sidenav {
  position: fixed;
  top: 70px; /* Adjust based on your navbar height */
  left: 0;
  margin-left: 20px; /* Add this line */
  width: 250px; /* Adjust as needed */
  overflow-y: auto;
  max-height: 90vh;
  z-index: 1000;
}

img.bordered {
  border: 2px solid #888;
  border-radius: 6px;
}

img[src$="WorkshopLogo.png"] {
  margin-top: 40px !important;
}