.ehabgroup-estimated-delivery-widget {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    gap: 15px;
    min-height: 82px;
    /* Uniform height with Pickup Widget */
    box-sizing: border-box;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.delivery-icon {
    color: #f39c12;
    /* Brand Orange */
    /* Default WordPress blue or customize */
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.delivery-selection select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    min-width: 150px;
}

.delivery-result {
    text-align: right;
    border-right: 1px solid #eee;
    padding-right: 15px;
}

.delivery-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 2px;
}

.delivery-date {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* RTL Support is handled by browser usually for Arabic, but explicit direction helps */
.ehabgroup-estimated-delivery-widget {
    direction: rtl;
}

.delivery-result {
    border-right: none;
    border-left: 1px solid #eee;
    padding-right: 0;
    padding-left: 15px;
    text-align: left;
}