/* DDM Time-based Delivery Message Styling */
.ddm-time-based-delivery-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%) !important;
    border: 2px solid #4CAF50 !important;
    padding: 15px !important;
    margin: 15px 0 !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2) !important;
    animation: ddm-fade-in 0.5s ease-in-out;
}

.ddm-time-based-delivery-message strong {
    color: #2E7D32 !important;
    font-size: 16px !important;
    display: inline-flex;
    align-items: center;
}

.ddm-time-based-delivery-message i {
    margin-right: 8px;
    color: #4CAF50;
}

@keyframes ddm-fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments for mobile */
@media screen and (max-width: 768px) {
    .ddm-time-based-delivery-message {
        margin: 10px 0 !important;
        padding: 12px !important;
    }
    
    .ddm-time-based-delivery-message strong {
        font-size: 14px !important;
    }
}

/* Ensure proper spacing in cart and checkout */
.woocommerce-cart .ddm-time-based-delivery-message,
.woocommerce-checkout .ddm-time-based-delivery-message {
    margin: 20px 0 !important;
}

/* Better integration with WooCommerce cart/checkout layout */
.cart-collaterals .ddm-time-based-delivery-message {
    margin-bottom: 20px !important;
}

.woocommerce-checkout-review-order .ddm-time-based-delivery-message {
    margin-top: 20px !important;
} 