/* Dxivare Vertical Header Styles */
.dxivare-header-vertical {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;

}
.dxivare-header-logo {
  margin-top: 24px;
  margin-bottom: 48px;
  width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  position: relative;
}
.dxivare-header-logo img,
.dxivare-header-logo svg {
  width: 200px;
  height: 200px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  overflow: visible;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: calc(100vw - 10px);
  transition: filter 0.3s, transform 0.3s;
  filter: drop-shadow(0 2px 8px var(--dxivare-overlay)); /* Normal status */
}
.dxivare-header-logo:hover img,
.dxivare-header-logo:hover svg {
  transform: scale(1.08) rotate(-3deg);
}
.dxivare-header-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background:var(--dxivare-background);
  backdrop-filter: blur(10px);
  max-height: fit-content;
  width: 100%;
  border-radius: 0px 25px 25px 0px;
}
.dxivare-header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  left: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.dxivare-header-nav li {
  margin: 18px 0;
}
.dxivare-header-nav a {
  color: var(--dxivare-text);
  font-size: 0.85rem;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(1);
  padding: 8px 12px;
  border-radius: 4px;
  background: transparent;
}
.dxivare-header-nav:hover a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 1;
  transform: scale(1.05);
}
.dxivare-header-nav a:hover {
  color: var(--dxivare-primary);
  font-weight: 600;
  opacity: 1;
  transform: scale(1.1);
}
