.gender-container {
  display: flex;
  gap: 10px;
}

.gender-card {
  background-color: white;
  border-radius: 15px;
  /* padding: 20px; */
  width: 200px;
  height: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.gender-card:hover {
  transform: scale(1.03);
}

.gender-card.shrink {
  transform: scale(0.95);
}

.image-container {
  height: 190px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gender-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.gender-label {
  background-color: #f59b4c;
  color: white;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 25px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.gender-label::after {
  padding-left: 80px;
  content: " 〉";
  font-weight: bold;
}
