

/* start// */

.cards-container {
  height: 250px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  padding: 0 20px;
  height: 100%;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 150px;
  min-width: 200px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
  padding: 20px;
  flex-shrink: 0;
}

/* Keep your existing color classes but add these */
.card p.tip {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p.second-text {
  font-size: 0.9em;
  white-space: normal;
}

/* Hide scrollbar but keep functionality */
.cards-container::-webkit-scrollbar {
  display: none;
}

.cards-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}