.view-btn {
  background-color: white;
  color: #3b82f6; /* matches blue card */
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.view-btn:hover {
  background-color: #1e40af;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}