.add-to-booking {
    background: #0073aa!important;
    color: white!important;
    border: none!important;
    padding: 10px 20px!important;
    cursor: pointer!important;
    margin: 10px 0!important;
}

.add-to-booking:disabled {
    background: #ccc;
}

#complete-selection {
    display: none;
    font-size: 14px;
    margin-top: 0px;
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
}

.booking-cart-container {
   position: relative;
   display: inline-block;
   margin: 10px;
}

.booking-cart-icon {
   font-size: 24px;
   cursor: pointer;
   padding: 10px;
   background: #f5f5f5;
   border-radius: 50%;
}

.booking-cart-counter {
   position: absolute;
   top: -5px;
   right: -5px;
   background: #e53935;
   color: white;
   border-radius: 50%;
   padding: 2px 6px;
   font-size: 12px;
   min-width: 20px;
   text-align: center;
}

.booking-cart-preview {
   display: none;
   position: absolute;
   right: 0;
   top: 120%;
   background: white;
   border-radius: 8px;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   min-width: 500px;
   max-width: 700px;
   z-index: 1000;
   padding: 10px;
   text-align: left;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
    .booking-cart-preview {
        min-width: 320px!important;
        max-width: 320px!important;
    }
}


.booking-cart-items {
   list-style: none;
   margin: 0;
   padding: 0;
   max-height: 300px;
   overflow-y: auto;
}

.booking-cart-items li {
   padding: 10px;
   border-bottom: 1px solid #eee;
   font-size: 14px;
   color: #333;
}

.booking-cart-items li:last-child {
   border-bottom: none;
}

.booking-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.booking-cart-item-title {
    flex: 1;
}

.booking-cart-total {
    padding: 10px;
    background: #ea556d;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

.booking-cart-total strong {
    color: white;
    font-size: 18px;
}

.total-amount {
    color: white !important;
    font-size: 20px;
}

.booking-cart-divider {
    border-bottom: 2px solid #eee;
    margin: -10px 0;
}

.booking-cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-cart-item-price {
    color: #666;
    font-size: 0.9em;
}

.booking-cart-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
}

.remove-booking-item {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    color: #999;
    transition: color 0.3s;
}

.remove-booking-item:hover {
    color: #ff0000;
}

.add-to-booking.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes processing {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.add-to-booking.processing {
    animation: processing 1s infinite;
}

.empty-booking-cart-message {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}