/* 
 * Delivery Information Link Styles 
 * Different styling for delivery information links based on message type
 */

/* Style for links in error messages (white and underlined) */
.woocommerce-error a.delivery-info-link,
.woocommerce-error a[href="/delivery-information/"] {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: bold;
}

/* Style for links in info messages (black and underlined) */
.woocommerce-info a.delivery-info-link,
.woocommerce-info a[href="/delivery-information/"] {
    color: #000000 !important;
    text-decoration: underline !important;
    font-weight: bold;
}

/* For any message with white background and black text, ensure the link is black and underlined */
.shipping-error-container a.delivery-info-link,
.shipping-error-container a[href="/delivery-information/"], 
a.delivery-info-link:not(.woocommerce-error a.delivery-info-link),
.woocommerce-message a.delivery-info-link,
.woocommerce-notice a.delivery-info-link {
    color: #000000 !important;
    text-decoration: underline !important;
    font-weight: bold;
}
