.dock-outer {
  position: fixed;
  right: 30px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  max-width: 100%;
  align-items: center;
  z-index: 999;
  margin: 0;
}

.dock-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 12px;
  border-radius: 0;
  background-color: var(--dock-bg);
  border: 1px solid var(--dock-border);
  padding: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-shadow: none;
}

.dock-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--dock-item-bg);
  border: 1px solid var(--dock-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  transition: all 200ms ease;
  will-change: transform;
  text-shadow: none;
}

.dock-item:hover {
  border-color: #b0b5bc;
  background-color: var(--dock-item-hover);
  transform: translateY(-2px);
}

.dock-item.hovered {
  border-color: #b0b5bc;
  background-color: var(--dock-item-hover);
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
}

.dock-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid var(--dock-border);
  background-color: var(--dock-label-bg);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  backdrop-filter: blur(10px);
}

.dock-item:hover .dock-label,
.dock-item.hovered .dock-label {
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .dock-outer {
    right: 15px;
    bottom: 30%;
  }

  .dock-panel {
    padding: 8px;
    gap: 8px;
  }

  .dock-item {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }

  .dock-icon {
    font-size: 18px;
  }

  .dock-label {
    font-size: 12px;
    padding: 6px 10px;
  }
}
