/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.product-shipping-container {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.product-shipping-container label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.product-shipping-container select,
.product-shipping-container input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.product-shipping-container select {
    cursor: pointer;
    background-color: #fff;
}

.product-shipping-container select:focus,
.product-shipping-container input:focus {
    border-color: #007cba;
    outline: none;
}

.shipping-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 0;
}


/* Style for placeholder text */
#pickup_date.placeholder {
    color: #999; /* Light gray color for placeholder text */
}
#pickup_date.placeholder::before {
    content: attr(data-placeholder);
    position: absolute;
    color: #999;
    pointer-events: none;
}