.dataset-bubble-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dataset-bubble {
  background-color: #f0f8ff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 400px;
  transition: transform 0.2s ease;
}

.dataset-bubble:hover {
  transform: scale(1.02);
}

.dataset-bubble h3 {
  margin-top: 0;
  color: #2c3e50;
}

.dataset-bubble p {
  margin-bottom: 0;
  color: #555;
}
