.menu-button,
.new-chat-button {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: all 0.2s ease;
}

.menu-button:hover,
.new-chat-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.menu-button:active,
.new-chat-button:active {
  transform: translateY(0);
}

.menu-button svg,
.new-chat-button svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

