.showroom_container,
.show-carousel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.carousel-vehicles {
  width: 100% !important;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 80% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.car-holder {
  height: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  height: 100%;
}

.vehicle-image {
  width: 50%;
  height: 80% !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.vehicle-image img {
  height: 100% !important;
}

.vehicle-details {
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: end;
  padding-top: 20px;
  padding-bottom: 20px;
}

.details {
  width: 100%;
  text-wrap: wrap;
}

.left-details {
  width: 50%;
  height: 100%;
}

.rht-details {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
}

.right-details {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.costs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.wanting {
  display: flex;
  justify-content: end;
  align-items: start;
  padding-top: 10px;
  gap: 7px;
  text-align: center;
}

.wanting button {
  background-color: rgb(49, 49, 243);
  height: 2.5vw;
  width: 6.5vw;
  font-size: 8px;
  color: white;
}

.vehicle-details h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
  padding-bottom: 10px;
}

.vehicle-details p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
} /*# sourceMappingURL=style.css.map */