/* General styling for the page */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 2rem;
  background: #f4f4f4;
}

/* Layout for color input, dropdown, and button */
.controls {
  margin-bottom: 2rem;
}

/* Flexbox layout to display color boxes side-by-side */
.color-scheme {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Styling for each color swatch */
.color-box {
  width: 100px;
  height: 150px;
  cursor: pointer;
  display: flex;
  align-items: end;
  justify-content: center;
  color:white;
  font-weight: bold;
  padding: 0.5rem;
  transition: transform 0.2s;
}

/* Hover effect for feedback */
.color-box:hover {
  transform: scale(1.05);
}
