.cart-dropdown-rental {
  position: absolute;
  top: 100%; 
  right: 0;
  background: #fff;
  z-index: 9999 !important;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  width: 290px; 
  max-height: 400px;
}

.cart-item-rental {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease-in-out;
}

.cart-item-rental:last-child {
  border-bottom: none;
}

.cart-item-rental:hover {
  background-color: #f9f9f9;
}

.cart-item-rental-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-dropdown-rental.active {
  display: block;
}

.btn-rental-now {
  display: inline-block;
  background-color: #f0f8ff; 
  color: #1a73e8;            
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-rental-now:hover {
  background-color: #e0f0ff; 
  text-decoration: none;
}
.cart-empty-box {
  text-align: center;
  padding: 2px 2px;
}


.cart-item-go-to-cart {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #eee;
  background-color: #fff;
  text-align: center;
}

.cart-items-scrollable {
  overflow-y: auto;
  width: 100%;
  max-height: 220px;
  flex-grow: 1;
}

.btn-go-to-cart {
  display: inline-block;
  background-color: #f0f8ff; 
  color: #1a73e8;            
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-go-to-cart:hover {
  background-color: #e0f0ff; 
  text-decoration: none;
}