#tools-menu-root {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tools-menu-toggle {
  width: 100%;
  margin: 0;
  padding: 0.6rem;
  border-radius: 0;
  background-color: #1a1a1a;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.tools-menu-toggle:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.tools-menu-drawer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background-color: #1a1a1a;
  box-sizing: border-box;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.tools-menu-drawer.open {
  max-height: 120px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.tools-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 5rem;
  height: 5rem;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #eee;
  text-decoration: none;
  font-size: 0.75rem;
}

.tools-menu-btn:hover {
  background-color: #3a3a3a;
  color: #fff;
}

.tools-menu-btn span {
  font-size: 0.7rem;
}
