/* Container styling */
.storage-calculator {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.storage-calculator-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 40px 20px 40px 20px;
}
.storage-calculator-card:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    background-image: url(https://144528743.fs1.hubspotusercontent-eu1.net/hubfs/144528743/the-place-grey-positive-module-bottom--left-weighted.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    transition: 0.3ms fade;
}

/* Row for side-by-side layout */
.storage-card-row {
    align-items: start;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 1700px;
    margin: 0 auto;
}

/* Left Section: Vehicle Info */
.vehicle-section {
  flex: 1;
  text-align: left;
}

img.vehicle-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vehicle-type {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
  padding-left: 4rem;
}

.vehicle-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  width: 34em;
  padding-left: 4rem;
  margin-bottom: 0px;
}

/* Right Section: Storage Info */
.storage-info-section {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}
select#unit-dropdown {
    align-items: center;
    border: none;
    border-bottom: 2px solid #37827e;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: .7rem;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 12rem;
    text-align: center;
}

.dropdown-label {
  margin-right: 10px;
}

.dropdown-icon {
    color: #01615a;
    font-size: 16px;
    padding-left: 30px;
}

.storage-unit-size {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.storage-unit-size span {
  color: #003339;
  font-weight: 700;
}

.full-load-info {
  text-align: left;
}

.full-load-number {
  font-size: 4rem;
  font-weight: 700;
  color: #7A1E8C;
}

.full-load-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.load-description {
  font-size: 1rem;
  color: #666;
  margin: 15px 0;
  line-height: 1.6;
  width:68%;
}

.cta-button {
    background-color: #7a1e8c;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color .3s ease;
    font-size: 14px;
    border: 2px solid #7f398e;
}

.cta-button:hover {
    background-color: #fff0;
    border: 2px solid #7f398e;
    text-decoration: none;
    color: #7f398e;
}
p.dropdown-label {
    border-bottom: 1px solid #91bab7;
    font-size: 12px;
    padding: 1px 0px;
      padding-left: 10px;
}

select#unit-dropdown- {
    border: 0px;
    border-bottom: 2px solid #91bab7;
    width: 36%;
    margin-bottom: 30px;
    font-size: 12px;
}

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

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding-left: 60px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev-arrow,
.next-arrow {
  background-color: #487794;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 19px;
  width: 40px;
  height: 40px;
}

.prev-arrow:hover,
.next-arrow:hover {
  background-color: #dae3e9;
}


.dropdown {
    padding-left: 60px;
}
button.next-arrow {
    margin-right: 12rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .storage-card-row {
    flex-direction: column;
    text-align: center;
  }

  .vehicle-section,
  .storage-info-section {
    flex: none;
    width: 100%;
  }

  .dropdown {
    justify-content: center;
  }
}
.disable-focus-styles :focus {
    background-color: #dae3e9!important;
}
@media only screen and (max-width: 767px) {
    .vehicle-description {
    width: 100%;
}
  .load-description {
    width: 30%;
}
  button.next-arrow {
    margin-right: 32rem;
}
  select#unit-dropdown- {
    width: 21%;
}
  img.vehicle-image {
    max-width: 45%;
  }
  .storage-calculator-card {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    background-image: url(https://144528743.fs1.hubspotusercontent-eu1.net/hubfs/144528743/the-place-grey-positive-module-bottom--left-weighted.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    transition: 0.3ms fade;
}
}
@media only screen and (max-width: 1160px) and (min-width: 767px) {
.storage-card-row {
    flex-direction: column;
}
  