/* Updated card styles for new layout */
.card-front {
  background-color: white;
  transform: rotateY(180deg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  margin-top: 0.5rem;
}

.cheese-name {
  font-size: 1rem;
  color: var(--accent-color);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.cheese-icon {
  width: 120px;
  height: 120px;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove the card image placeholder */
.card-image {
  display: none;
}
