/* Hide the topbar completely */
.swagger-ui .topbar {
  display: none !important;
}

/* Add custom logo inside the info section */
.swagger-ui .information-container.wrapper .info {
  position: relative;
  padding-top: 80px;
}

/* Logo as background */
.swagger-ui .information-container.wrapper .info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 60px;
  background-image: url("/assets/default-hand-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
