/* src/components/action-card/action-card.css */
:host {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
