.theme-select-banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
}

.theme-btn {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  transition: background-color 0.2s ease-in-out, transform 0.2s;
}

.theme-btn:hover {
  transform: scale(1.05);
}

.wild-btn {
  background-color: #ff5722;
  color: #fff;
}

.wild-btn:hover {
  background-color: #e64a19;
}

.chic-btn {
  background-color: #b39ddb;
  color: #1a1a1a;
}

.chic-btn:hover {
  background-color: #d1c4e9;
}
