.color-picker-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-picker-container label {
  margin-right: 10px; /* Add spacing between the labels and inputs */
}

.color-picker-container input[type="range"] {
  width: 10rem;
  margin-right: 3rem;
  padding: 1rem 0;
}

/* Media Query for Tablet */
@media screen and (max-width: 768px) {
  .wardrobe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    font-size: 0.9rem;
  }

  .color-picker-container {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .color-picker-container input[type="range"] {
    width: 80%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .color-picker-container label {
    margin-right: 0;
  }
}

/* Media Query for Mobile */
@media screen and (max-width: 480px) {
  .color-picker-container {
    flex-direction: column;
    align-items: center;
    margin: 1rem 0 0 0;
  }

  .color-picker-container input[type="range"] {
    width: 80%;
    margin-bottom: 10px;
  }
}
