.md-header__title {
  margin-left: 0 !important;
  margin-right: 0.4rem;
}

.md-header__version-container {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.sitemap-tree ul {
  list-style: none;
  padding-left: 1.2rem;
  margin: 0.3rem 0;
}

.sitemap-tree li {
  position: relative;
  padding-left: 1.2rem;
  margin: 0.3rem 0;
}

.sitemap-tree li::before {
  content: "├─";
  position: absolute;
  left: 0;
  color: var(--md-default-fg-color--lighter);
}

.sitemap-tree ul>li:last-child::before {
  content: "└─";
}

.sitemap-tree a {
  font-family: monospace;
  font-size: 0.95rem;
}

/* Banner Styling */
.md-banner {
  background: linear-gradient(120deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%) !important;
  position: relative;
  overflow: hidden;
}

.md-banner__inner {
  color: #ffffff !important;
  text-align: center !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

.bmc-image {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  margin-left: 0.5rem;
}

.bmc-image:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .bmc-image {
    height: 36px;
  }
}