.custom-appointment-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
  background: #f9f5fc;
}

.custom-appointment-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* Left Section Styling */
.custom-appointment-left {
  flex: 1;
  padding: 30px;
  background-color: var(--vs-title-color) !important;
  /* background-color: #dcdbd6; */
  border-right: 2px solid #e0e0e0;
}

.custom-appointment-left h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.custom-appointment-left p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.custom-appointment-left label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--vs-theme-color2);
  font-family: var(--vs-body-font) !important;
}

.custom-appointment-left input[type="date"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

.slider-container {
  margin-top: 20px;
}

.slider-container label {
  font-weight: bold;
  color: var(--vs-theme-color2);
  font-family: var(--vs-body-font) !important;
}

.slider-container input[type="range"] {
  width: 100%;
  margin: 10px 0;
}

.slider-container .scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
}

.slider-container p {
  font-size: 14px;
  color: var(--vs-theme-color2);
}

/* Right Section Styling */
.custom-appointment-right {
  flex: 1;
  padding: 30px;
  background-color: #fff;
}

.custom-appointment-right h3 {
  font-size: 24px;
  color: #060822;
  margin-bottom: 15px;
}

.custom-appointment-right p {
  font-size: 16px;
  color: #060822;
  margin-bottom: 10px;
}

.custom-appointment-right p strong {
  color: #060822;
}

.fruit-container {
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  height: auto;
  background-color: #f7f7ff;
  border: 3px solid var(--vs-title-color);
  border-radius: 8px;
}

.fruit-container h3 {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.fruit-container img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center center;
  transition: 0.3s all ease-in-out;
}
.scale {
  display: flex;
  justify-content: space-between;
  color: #060822;
}

.fruit-container img:hover {
  transform: translateZ(10px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .custom-appointment-container {
    flex-direction: column;
  }

  .custom-appointment-left,
  .custom-appointment-right {
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 20px;
  }

  .fruit-container {
    padding: 10px;
  }
}
