/* Delivery Dates Minimal Styles */
.wdd-delivery-status {
    margin: 0;
    width: 100% !important;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Loading state opacity */
.wdd-delivery-status.wdd-loading {
    opacity: 0.6;
}

.wdd-message {
    display: inline-block;
    width: 100% !important;
    padding: 0;
    font-size: 1em;
    line-height: 1.4;
    text-align: center;
}

/* Minimal loading state text style */
.wdd-loading {
    color: #777;
    font-style: italic;
}

/* Minimal error state text style */
.wdd-error {
    color: #dc3545; /* Keep red color for errors for usability */
}

/* Responsive */
@media (max-width: 768px) {
    .wdd-message {
        font-size: 0.9em;
        padding: 8px 12px;
    }
}