/* Theme Picker Specific Styles */
.theme-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.theme-card {
  flex: 1 1 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hardcoded card colors so they stay consistent */
.theme-green { background-color: #84A98C; }
.theme-pink { background-color: #F5A6C4; }
.theme-purple { background-color: #B39DDB; }
.theme-blue { background-color: #81D4FA; }
.theme-red { background-color: #F28B82; }
.theme-orange { background-color: #FFB74D; }