/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 
 .woo-rentals-datepicker-wrapper {
  margin-top: 10px;
}
.woo-rentals-datepicker {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.woo-rentals-quantity-wrapper
{
    display: none;
}

.rental-product-item {
    position: relative;
}

.out-of-stock-badge {
position: absolute;
    top: 25px;
    background: #d32f2f;
    color: #fff;
    padding: 10px 0px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    width: 80%;
    margin: 0 auto;
    right: 25px;
	left: 25px;
}

.woo-rentals-datepicker-wrapper label {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 0.5rem;   
	font-size: 1rem;
	font-family: inherit; 
}


input#rental_dates {
    line-height: 30px;
    margin-bottom: 1rem;
    width: 50%;
} 


#rental-total-box {
  background-color: #FF0000;
  border-radius: 6px;
  color: #fff;
  padding: 15px;
  margin-top: 15px;
  font-size: 15px;
}
#rental-total-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
#rental-total-box small {
  opacity: 0.9;
}

.rental-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.rental-product-item {
  text-align: center;
  background: #fff;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.rental-product-item h3 {
  font-size: 15px;
  margin: 8px 0;
}
