/* Slider CSS */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 0 0 100%;
  width: 100%;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.slider-prev, 
.slider-next {
  cursor: pointer;
  padding: 10px 15px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover, 
.slider-next:hover {
  background-color: #ddd;
}

/* Range slider styles */
.range-slider {
  width: 100%;
  height: 15px;
  position: relative;
  margin: 20px 0;
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4682b4;
  cursor: pointer;
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4682b4;
  cursor: pointer;
}

/* Form input styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  background-color: #F3F3F3 !important;
  border: 1px solid #D9D9D9 !important;
  color: #828282 !important;
}

select {
  height: 100% !important;
}

input::placeholder,
textarea::placeholder {
  color: #828282 !important;
} 