/* ============================================================
   info-text.css  –  Reusable label : value info rows
   Used in: eBookingShippingDetails.jsp (Shipment Details header)
   ============================================================ */

.info-text-group {
    margin-top: 8px;
    background-color: #f0f7ff;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    padding: 12px 16px;
}

.info-text-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #334155;
    margin-bottom: 4px;
}

.info-text-label {
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-text-value {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    color: #1e1e1e;
    word-break: break-word;
}
