.gradient-shades {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

input[type="number"],
input[type="color"] {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
}

.color-pickers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.color-pickers label {
  margin-right: 4px;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

#generate-button {
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #4CAF50;
  color: white;
}

#generate-button:hover {
  background-color: #3e8e41;
}

.tooltip {
  position: absolute;
  z-index: 1;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px;
  border-radius: 4px;
  visibility: hidden;
}

.gradient-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gradient-item {
  margin: 10px;
  width: 200px;
  height: 100px;
  cursor: pointer;
  background: linear-gradient(to right, #ffffff, #000000);
}

#colors-input {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 50px;
  height: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

#colors-input::-ms-expand {
  display: none;
}

#colors-input option {
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

#colors-input option:checked {
  background-color: #ccc;
  color: #fff;
}
.textarea{
  font-size: 20px;
  font-family: 'Cabin Sketch', cursive;
}

.slider-controls {
  margin: 8px 0;
}

.slider {
  width: 200px;
  margin: 0 auto 12px;
}

.slider-value {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-family: 'Cabin Sketch', cursive;
}

.sample-text-slider {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  transition: height 0.3s;
  font-family: 'Cabin Sketch', cursive;
  font-size: 20px;
}

.sample-text-slider-header {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  align-items: center;
}

.sample-text-slider-content {
  display: none;
  padding: 0 16px 16px;
  max-height: 60vh;
  overflow-y: auto;
}

.expand-button,
.minimize-button {
  background-color: #4CAF50;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.expand-button:hover,
.minimize-button:hover {
  background-color: #3e8e41;
}

.font-color-picker {
  display: block;
  margin: 8px 0;
  width:100px;
  height: 50px;
}
.hidden {
  display: none;
}
.selected-font-color-code {
  margin-left: 8px;
}
