.menu-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-radius: 12px;
}

.menu-line-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  animation: ml-enter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--i, 0) * 0.04s);
}
.menu-line-item:hover {
  color: #3c6efa;
  background: rgba(60, 110, 250, 0.08);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 5px rgba(60, 110, 250, 0.1);
}
.menu-line-item:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 1px 4px rgba(60, 110, 250, 0.08);
}
.menu-line-item.active {
  color: #fff;
  background: #3c6efa;
  box-shadow: 0 4px 14px rgba(60, 110, 250, 0.25);
}
.menu-line-item.active:hover {
  color: #fff;
  background: #3c6efa;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(60, 110, 250, 0.3);
}

@keyframes ml-enter {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*# sourceMappingURL=menuLine.css.map */
