.dock-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dock-item:hover {
  transform: scale(1.2);
}

.dock-item img {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: auto;
}