.obyte-desktop-sidebar {
  position: fixed;
  top: 50%;
  z-index: 35;
  transform: translateY(-50%);
}

.obyte-desktop-sidebar--left {
  left: 1.25rem;
}

.obyte-desktop-sidebar--right {
  right: 1.25rem;
}

body.obyte-theme .obyte-desktop-sidebar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem;
  padding-inline-start: 0.75rem;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(0, 167, 230, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--ob-shadow, 0 18px 40px rgba(52, 53, 55, 0.11));
  backdrop-filter: blur(18px);
}

body.obyte-theme .obyte-desktop-sidebar__item {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.obyte-desktop-sidebar__link {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  min-height: 38px;
  padding: 0.5rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(132deg, var(--ob-blue, #00a7e6) 0%, var(--ob-blue-soft, #33b9eb) 100%);
  color: #ffffff;
  font-family: var(--ob-font-strong, "URW Gothic L Demi", "Nunito", "Segoe UI", Arial, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.obyte-desktop-sidebar__link:hover,
.obyte-desktop-sidebar__link:focus-visible {
  box-shadow: 0 12px 24px rgba(0, 167, 230, 0.2);
  transform: translateY(-1px);
}

.obyte-desktop-sidebar__link:focus-visible {
  outline: 0;
}

.obyte-desktop-sidebar__icon {
  position: static;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.12rem;
  line-height: 1;
  text-align: center;
  color: #ffffff !important;
}

.obyte-desktop-sidebar__icon i {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1;
  color: inherit !important;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.obyte-desktop-sidebar__icon i::before {
  display: block;
  width: 1.25rem;
  line-height: 1;
  text-align: center;
  color: inherit !important;
}

.obyte-desktop-sidebar__icon :is(svg, path) {
  fill: currentColor;
}

.obyte-desktop-sidebar__link :is(.fa, .fa-solid, .fa-regular, .fa-brands) {
  color: #ffffff !important;
}

.obyte-desktop-sidebar__link > * {
  pointer-events: none;
}

.obyte-desktop-sidebar__label {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(52, 53, 55, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ob-shadow, 0 18px 40px rgba(52, 53, 55, 0.11));
  color: var(--ob-text, #343537);
  font-family: var(--ob-font-strong, "URW Gothic L Demi", "Nunito", "Segoe UI", Arial, sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.obyte-desktop-sidebar--left .obyte-desktop-sidebar__label {
  left: calc(100% + 0.75rem);
}

.obyte-desktop-sidebar--right .obyte-desktop-sidebar__label {
  right: calc(100% + 0.75rem);
}

.obyte-desktop-sidebar__link:hover .obyte-desktop-sidebar__label,
.obyte-desktop-sidebar__link:focus-visible .obyte-desktop-sidebar__label {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 960px) {
  .obyte-desktop-sidebar {
    display: none;
  }
}
