/* tool-card.css — Styles for individual tool cards on tool and create pages */

/* Tool card base style: glassy background, rounded corners, and padding */
.tool {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  transition: background 0.2s;
}

/* Hover effect: tool card gets brighter */
.tool:hover {
  background: rgba(255, 255, 255, 0.1);
}
