/* Tool button styles */
.tool-button {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--roblox-border);
  border-radius: 10px;
  padding: 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tool-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 162, 255, 0.15);
  border-color: var(--roblox-blue);
}

.tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.tool-name {
  font-size: 18px;
  font-weight: 700;
}