.color-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  border-radius: 8px;
  background: #f5f6f7;
  color: #9a9ea7;
  transition: all 0.3s ease-in-out;
}

.color-btn.active {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), #7963F0;
  color: #7240ff;
}

.car-btn,
.fuel-btn {
  border-radius: 101.761px;
  backdrop-filter: blur(5.08px);
  transition: all 0.3s ease-in-out;
}

/* Default (Unselected) State */
.car-btn,
.fuel-btn {
  border: 1.018px solid #C7CAD1;
  color: #747b8b;
  background: transparent;
}

/* Selected (Active) State */
.car-btn.active,
.fuel-btn.active {
  background: #7240FF;
  color: white;
  border: none;
}
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #C7CAD1; /* Default grey background */
  outline: none;
  transition: background 0.15s ease-in-out;
  position: relative;
}

/* Thumb styling for WebKit Browsers (Chrome, Safari) */
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #7240ff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Thumb styling for Firefox */
.custom-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #7240ff;
  border-radius: 50%;
  cursor: pointer;
}

  .gradient-border {
    z-index: 1;
  width: 60%; /* Adjust width as needed */
  height: 50px; /* Adjust height as needed */
  border-top: 4px solid #bf60fa; /* Top border with solid color */
  background: linear-gradient(
    to bottom,
    rgba(191, 96, 250, 0.2), /* Start with light purple (20% opacity) */
    rgba(191, 96, 250, 0) /* Fade to transparent */
  );
}
.chatbox-7 {
  position: absolute;
  top: 0px;
  left: 32px;
  border-radius: 18.5px 18.5px 18.5px 0px;
  background-color: rgba(0, 42, 59, 0.1);
  width: 202px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 6px 18px;
  box-sizing: border-box;
  font-size: 14px;
  color: #002a3b;
}
.chats-frame {
  position: absolute;
  top: 165px;
  left: 24px;
  width: 233px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  font-size: 10px;
}
.chatbot {
  display: none;
  width: 350px;
  position: fixed;
  right: 50px;
  height: 440px;
  bottom: 43px;
  z-index: 999;
  font-family: Outfit;
}

.chatbot iframe{
  width: 100%;
  height: 100%;
  border: none;
}
